From bfc4cc301d4b9182334b75911abb5626c22287bc Mon Sep 17 00:00:00 2001 From: Shekar Siri Date: Tue, 31 Oct 2023 10:26:39 +0100 Subject: [PATCH] change(ui): removed unused var --- frontend/app/Router.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/frontend/app/Router.tsx b/frontend/app/Router.tsx index d6fb8945c..72d6f7332 100644 --- a/frontend/app/Router.tsx +++ b/frontend/app/Router.tsx @@ -53,8 +53,7 @@ const Router: React.FC = (props) => { fetchUserInfo, fetchSiteList, history, - match: { params: { siteId: siteIdFromPath } }, - additionalRoutes = null + match: { params: { siteId: siteIdFromPath } } } = props; const [isIframe, setIsIframe] = React.useState(false); const [isJwt, setIsJwt] = React.useState(false);