Skip to content

Commit

Permalink
Update App.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
aelassas committed Dec 2, 2024
1 parent 5d96e49 commit e894ed4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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'))
Expand All @@ -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 />} />
Expand Down

0 comments on commit e894ed4

Please sign in to comment.