diff --git a/frontend/src/pages/errorPage.js b/frontend/src/pages/errorPage.js index b4eec0d7..97158e92 100644 --- a/frontend/src/pages/errorPage.js +++ b/frontend/src/pages/errorPage.js @@ -11,6 +11,9 @@ export default function ErrorPage($container, errorCode = 0) { case 401: comment = "어이 넌 권한이 없다."; break; + case 404: + comment = "그런 거 없다."; + break; case 403: comment = "클라이언트 요청 관련 오류."; break; diff --git a/frontend/src/router.js b/frontend/src/router.js index 7884a438..46063ce5 100644 --- a/frontend/src/router.js +++ b/frontend/src/router.js @@ -24,7 +24,7 @@ export default function Router($container) { currentPage = new ErrorPage($container, info.errorCode); currentHeader = new emptyHeader($header); } else if (TargetPage === ErrorPage) { - currentPage = new ErrorPage($container, 401); // 그냥 아래 부분과 합쳐도 되지만 가독성을 위해 분리했습니다. + currentPage = new ErrorPage($container, 404); // 그냥 아래 부분과 합쳐도 되지만 가독성을 위해 분리했습니다. currentHeader = new emptyHeader($header); } else { if (currentPage instanceof TargetPage && prevInfo === info) return; // 이전 페이지와 같은 페이지로 이동할 때는 렌더링하지 않습니다.