v0.1.49 - 인증 재전송 버튼 노출 조건 조정
This commit is contained in:
12
src/App.vue
12
src/App.vue
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user