Skip to content

Commit

Permalink
FIX: 자체폼 이메일 인증 시 코드 발송 전에도 안내 문구 보이도록 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
hirediversity committed Sep 4, 2023
1 parent 38ef4a7 commit 6f6d957
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/FormUI/EmailAuthForm/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ function EmailAuthForm({ form, uiSetting, lang }: FormUIProps) {
/>
)}
</Box>
{isSented && !isVerified && <EmailAuthNotice lang={lang} />}
{!isVerified && <EmailAuthNotice lang={lang} />}
{isSented && !isVerified && <EmailAuthResendButton onVerify={onVerify} lang={lang} />}
</FlexBox>
);
Expand Down

0 comments on commit 6f6d957

Please sign in to comment.