From 97333e194e2c5eedab9830e3b061007469444545 Mon Sep 17 00:00:00 2001 From: yena <50291995+nyj001012@users.noreply.github.com> Date: Wed, 13 Mar 2024 16:33:35 +0900 Subject: [PATCH] =?UTF-8?q?feat(route):=20=EC=97=86=EB=8A=94=20=ED=8E=98?= =?UTF-8?q?=EC=9D=B4=EC=A7=80=EC=97=90=20=EC=A0=91=EA=B7=BC=ED=95=98?= =?UTF-8?q?=EB=A0=A4=20=ED=95=A0=20=EA=B2=BD=EC=9A=B0=20404=EB=A1=9C=20?= =?UTF-8?q?=EC=9D=B4=EB=8F=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/pages/errorPage.js | 3 +++ frontend/src/router.js | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/frontend/src/pages/errorPage.js b/frontend/src/pages/errorPage.js index b4eec0d7f..97158e921 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 7884a4384..46063ce58 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; // 이전 페이지와 같은 페이지로 이동할 때는 렌더링하지 않습니다.