Skip to content

Commit

Permalink
refactor: 전체보기 페이지 명칭 수정 router 적용
Browse files Browse the repository at this point in the history
  • Loading branch information
semnil5202 committed Jan 13, 2024
1 parent 10e9713 commit 5c97955
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions frontend/src/router.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ import Search from './pages/Search';
const SelectedTopic = lazy(() => import('./pages/SelectedTopic'));
const NewPin = lazy(() => import('./pages/NewPin'));
const NewTopic = lazy(() => import('./pages/NewTopic'));
const SeeAllPopularTopics = lazy(() => import('./pages/SeeAllBestTopics'));
const SeeAllNearTopics = lazy(() => import('./pages/SeeAllAllTopics'));
const SeeAllLatestTopics = lazy(() => import('./pages/SeeAllNewestTopics'));
const SeeAllBestTopics = lazy(() => import('./pages/SeeAllBestTopics'));
const SeeAllAllTopics = lazy(() => import('./pages/SeeAllAllTopics'));
const SeeAllNewestTopics = lazy(() => import('./pages/SeeAllNewestTopics'));
const KakaoRedirect = lazy(() => import('./pages/KakaoRedirect'));
const Profile = lazy(() => import('./pages/Profile'));
const AskLogin = lazy(() => import('./pages/AskLogin'));
Expand Down Expand Up @@ -80,7 +80,7 @@ const routes: routeElement[] = [
path: 'see-all/popularity',
element: (
<SuspenseComp>
<SeeAllPopularTopics />
<SeeAllBestTopics />
</SuspenseComp>
),
withAuth: false,
Expand All @@ -89,7 +89,7 @@ const routes: routeElement[] = [
path: 'see-all/near',
element: (
<SuspenseComp>
<SeeAllNearTopics />
<SeeAllAllTopics />
</SuspenseComp>
),
withAuth: false,
Expand All @@ -98,7 +98,7 @@ const routes: routeElement[] = [
path: 'see-all/latest',
element: (
<SuspenseComp>
<SeeAllLatestTopics />
<SeeAllNewestTopics />
</SuspenseComp>
),
withAuth: false,
Expand Down

0 comments on commit 5c97955

Please sign in to comment.