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); };