Skip to content

Commit

Permalink
fix: footer 레이아웃 영역 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
dvp-tae committed Nov 28, 2024
1 parent d81a9e5 commit c398d0c
Showing 1 changed file with 4 additions and 10 deletions.
14 changes: 4 additions & 10 deletions src/routes/router.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ const routes: RouteObject[] = [
{ path: RoutePath.Main, element: <MainPage /> },
{ path: RoutePath.Browse, element: <BrowsePage /> },
{ path: RoutePath.TicketBook, element: <ClacoBookPage /> },
{ path: RoutePath.MyPage, element: <MyPage /> },
],
},
{
Expand Down Expand Up @@ -104,17 +105,10 @@ const routes: RouteObject[] = [
{ path: RoutePath.TicketDownload, element: <TicketDownloadPage /> },
],
},
{ path: RoutePath.MyPageUserEdit, element: <UserEditPage /> },
{
path: RoutePath.MyPage,
element: <Layout />,
children: [
{ index: true, element: <MyPage /> },
{ path: RoutePath.MyPageUserEdit, element: <UserEditPage /> },
{
path: RoutePath.MyPagePreferenceEdit,
element: <PreferenceEditPage />,
},
],
path: RoutePath.MyPagePreferenceEdit,
element: <PreferenceEditPage />,
},
],
},
Expand Down

0 comments on commit c398d0c

Please sign in to comment.