Skip to content

Commit

Permalink
rename: API 명세와 페이지 이름 통일화
Browse files Browse the repository at this point in the history
  • Loading branch information
semnil5202 committed Jan 13, 2024
1 parent fb7234b commit 10e9713
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import { ARIA_FOCUS, FULLSCREEN } from '../constants';
import useSetLayoutWidth from '../hooks/useSetLayoutWidth';
import useSetNavbarHighlight from '../hooks/useSetNavbarHighlight';

function SeeAllNearTopics() {
function SeeAllAllTopics() {
useSetLayoutWidth(FULLSCREEN);
useSetNavbarHighlight('home');

Expand Down Expand Up @@ -101,4 +101,4 @@ const Wrapper = styled(Box)`
}
`;

export default SeeAllNearTopics;
export default SeeAllAllTopics;
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import { ARIA_FOCUS, FULLSCREEN } from '../constants';
import useSetLayoutWidth from '../hooks/useSetLayoutWidth';
import useSetNavbarHighlight from '../hooks/useSetNavbarHighlight';

function SeeAllTopics() {
function SeeAllBestTopics() {
useSetLayoutWidth(FULLSCREEN);
useSetNavbarHighlight('home');

Expand Down Expand Up @@ -102,4 +102,4 @@ const Wrapper = styled(Box)`
}
`;

export default SeeAllTopics;
export default SeeAllBestTopics;
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import { ARIA_FOCUS, FULLSCREEN } from '../constants';
import useSetLayoutWidth from '../hooks/useSetLayoutWidth';
import useSetNavbarHighlight from '../hooks/useSetNavbarHighlight';

function SeeAllLatestTopics() {
function SeeAllNewestTopics() {
useSetLayoutWidth(FULLSCREEN);
useSetNavbarHighlight('home');

Expand Down Expand Up @@ -101,4 +101,4 @@ const Wrapper = styled(Box)`
}
`;

export default SeeAllLatestTopics;
export default SeeAllNewestTopics;
6 changes: 3 additions & 3 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/SeeAllPopularTopics'));
const SeeAllNearTopics = lazy(() => import('./pages/SeeAllNearTopics'));
const SeeAllLatestTopics = lazy(() => import('./pages/SeeAllLatestTopics'));
const SeeAllPopularTopics = lazy(() => import('./pages/SeeAllBestTopics'));
const SeeAllNearTopics = lazy(() => import('./pages/SeeAllAllTopics'));
const SeeAllLatestTopics = lazy(() => import('./pages/SeeAllNewestTopics'));
const KakaoRedirect = lazy(() => import('./pages/KakaoRedirect'));
const Profile = lazy(() => import('./pages/Profile'));
const AskLogin = lazy(() => import('./pages/AskLogin'));
Expand Down

0 comments on commit 10e9713

Please sign in to comment.