From 3c8929b3c15f15afd214f4dd542fa5f1ca357ea5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?kimjh=28=EA=B9=80=EC=9E=A5=ED=98=84=29?= Date: Wed, 28 Sep 2022 14:13:12 +0900 Subject: [PATCH] =?UTF-8?q?=EB=A1=9C=EA=B7=B8=EC=9D=B8=20=EC=83=81?= =?UTF-8?q?=ED=83=9C=EC=97=90=EC=84=9C=20=EC=A0=91=EA=B7=BC=ED=95=A0=20?= =?UTF-8?q?=EC=88=98=20=EC=97=86=EB=8A=94=20=ED=8E=98=EC=9D=B4=EC=A7=80=20?= =?UTF-8?q?=EC=B2=98=EB=A6=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/router/Router.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/router/Router.js b/src/router/Router.js index b3d58b5..94ab55b 100644 --- a/src/router/Router.js +++ b/src/router/Router.js @@ -77,7 +77,13 @@ const Router = () => { if (isLogin === false && !route.meta?.authRoute) { return ; } else { - return ; + switch (props.route.path) { + case '/account/register': + case '/account/find': + return ; + default: + return ; + } } };