Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jhsung23 committed Oct 9, 2024
1 parent 944a741 commit 84de302
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/routes/route.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,16 @@ export const router = createBrowserRouter([
path: 'schedules',
element: <TotalSchedule />,
},
{ path: 'schedules/overview', element: <TimeCollection /> },
{
path: 'schedules/overview',
element: <TimeCollection />,
},
],
},
],
},
{
path: '*',
element: <NotFound />,
},
]);

0 comments on commit 84de302

Please sign in to comment.