fix(mukke): wire up resend verification email on login and register pages

The handlers were stubs returning success without actually calling the
auth service. Now delegates to authStore.resendVerificationEmail().

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Till JS 2026-03-19 14:57:56 +01:00
parent 87c61f4363
commit b34e787832
2 changed files with 2 additions and 4 deletions

View file

@ -35,8 +35,7 @@
}
async function handleResendVerification(email: string) {
// Implement if needed
return { success: true };
return authStore.resendVerificationEmail(email);
}
</script>

View file

@ -26,8 +26,7 @@
}
async function handleResendVerification(email: string) {
// Implement if needed
return { success: true };
return authStore.resendVerificationEmail(email);
}
</script>