diff --git a/src/App.tsx b/src/App.tsx
index 570f8678d0aba1ce35d60d021585d4f2f10cd857..0c65dd55816c66cd7c82af127b7f3b82de81954a 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>