diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index d33ade73e..738252bd7 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -25,7 +25,7 @@ const Notifications = lazy(() => import('@/pages/Notifications')) const Privacy = lazy(() => import('@/pages/Privacy')) const ToS = lazy(() => import('@/pages/ToS')) const About = lazy(() => import('@/pages/About')) -const ChangePassword = lazy(() => import('@/pages/ChangePassword')) +// const ChangePassword = lazy(() => import('@/pages/ChangePassword')) const Contact = lazy(() => import('@/pages/Contact')) const NoMatch = lazy(() => import('@/pages/NoMatch')) const Locations = lazy(() => import('@/pages/Locations')) @@ -50,7 +50,7 @@ const App = () => ( <Route path="/booking" element={<Booking />} /> <Route path="/settings" element={<Settings />} /> <Route path="/notifications" element={<Notifications />} /> - <Route path="/change-password" element={<ChangePassword />} /> + {/* <Route path="/change-password" element={<ChangePassword />} /> */} <Route path="/about" element={<About />} /> <Route path="/privacy" element={<Privacy />} /> <Route path="/tos" element={<ToS />} />