From 1a35c9425b73ced44d3c08306ac1c87e4fe26cd8 Mon Sep 17 00:00:00 2001 From: Alberto Defendi <1369-ahl-berto@users.noreply.gitlab.inf.unibz.it> Date: Wed, 9 Jun 2021 09:24:45 +0200 Subject: [PATCH] Re-insert auth area. --- src/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.tsx b/src/App.tsx index 2965eec..facca47 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -40,7 +40,7 @@ export const App: FC = () => { <Switch> <Route exact path={NonAuthRoutes.home} component={LandingPage} /> <Route path={NonAuthRoutes.auth} component={AuthUser} /> - <Route path={AuthRoutes.dashboard} component={Dashboard} /> + <Route path={AuthRoutes.dashboard} component={All(Dashboard)} /> <Route path={NonAuthRoutes.unauthorized} component={Unauthorized} -- GitLab