v0.1.49 - 인증 재전송 버튼 노출 조건 조정

This commit is contained in:
2026-04-24 11:51:30 +09:00
parent 0013f03bb3
commit 39a731138b
5 changed files with 38 additions and 18 deletions

View File

@@ -644,6 +644,17 @@ const authSessionInfo = computed(() => ({
? '이메일 인증 완료'
: '이메일 인증 필요',
}))
const showVerificationResend = computed(() => {
if (authMode.value !== 'login') {
return false
}
if (!authForm.email.includes('@')) {
return false
}
return authMessage.value.includes('이메일 인증')
})
const filteredGoals = computed(() => {
const query = goalQuery.value.trim().toLowerCase()
return goals.value.filter((goal) => {
@@ -3277,6 +3288,7 @@ onBeforeUnmount(() => {
:form="authForm"
:busy="authBusy"
:message="authMessage"
:show-resend-verification="showVerificationResend"
@close="closeAuthDialog"
@submit="submitAuthForm"
@resend-verification="resendVerificationEmail"