From c5894aa4591f10faeda9e4f2bff9951d6060e522 Mon Sep 17 00:00:00 2001 From: Alberto Defendi <1369-ahl-berto@users.noreply.gitlab.inf.unibz.it> Date: Wed, 23 Jun 2021 07:11:09 +0200 Subject: [PATCH] Re-insert auth. --- src/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.tsx b/src/App.tsx index 570f867..0c65dd5 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -27,7 +27,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} /> <Route component={NotFound} /> </Switch> -- GitLab