Skip to content

Commit

Permalink
changed app.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
lsylcy0307 committed Apr 14, 2024
1 parent 54d8889 commit 575b418
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions client/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,6 @@ function App() {
<Route element={<UnauthenticatedRoutesWrapper />}>
<Route path="/login" element={<LoginPage />} />
<Route path="/register" element={<RegisterPage />} />
<Route path="/reports" element={<ReportsPage />} />
<Route
path="/communications"
element={<CommunicationsPage />}
/>
<Route
path="/verify-account/:token"
element={<VerifyAccountPage />}
Expand All @@ -70,6 +65,11 @@ function App() {
<Route element={<AdminRoutesWrapper />}>
<Route path="/users" element={<AdminDashboardPage />} />
</Route>
<Route path="/reports" element={<ReportsPage />} />
<Route
path="/communications"
element={<CommunicationsPage />}
/>
{/* <Route element={<ReportsPage />}>
<Route path="/reports" element={<ReportsPage />} />
</Route> */}
Expand Down

0 comments on commit 575b418

Please sign in to comment.