From 22a80784d40f1e99c648ec3219416fce71958717 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?hagjoon=28=EC=9D=B4=ED=95=99=EC=A4=80=29?= Date: Wed, 7 Sep 2022 13:30:49 +0900 Subject: [PATCH] =?UTF-8?q?=ED=9A=8C=EC=9B=90=EA=B0=80=EC=9E=85=20(?= =?UTF-8?q?=ED=85=8C=EC=8A=A4=ED=8A=B8=20=EC=A4=91)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../account/register/AccountRegisterForm.js | 32 +++++++++---------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/src/components/account/register/AccountRegisterForm.js b/src/components/account/register/AccountRegisterForm.js index 4b3c972..b4423f8 100644 --- a/src/components/account/register/AccountRegisterForm.js +++ b/src/components/account/register/AccountRegisterForm.js @@ -243,25 +243,25 @@ export const AccountRegisterForm = ({ stepper, type, movePage }) => { return false; } - if (!vData.crtfyNo) { - setModal({ - isOpen: true, - title: '인증번호 인증', - desc: '인증번호 를 입력 해주세요.' - }); - return false; - } + // if (!vData.crtfyNo) { + // setModal({ + // isOpen: true, + // title: '인증번호 인증', + // desc: '인증번호 를 입력 해주세요.' + // }); + // return false; + // } const res = await accountApi.crtfyhpConfirm(vData.hpno, vData.crtfyNo); - if (!res.data.result) { - setModal({ - isOpen: true, - title: '인증번호 인증', - desc: '인증번호 가 잘못 되었습니다.' - }); - return; - } + // if (!res.data.result) { + // setModal({ + // isOpen: true, + // title: '인증번호 인증', + // desc: '인증번호 가 잘못 되었습니다.' + // }); + // return; + // } setIsRunning(true); setIsCrtfy(true); };