mobile: fix resend email not working

This commit is contained in:
Ammar Ahmed
2026-03-19 09:29:26 +05:00
parent 9145ea4234
commit 9bf4e68dcd

View File

@@ -113,7 +113,9 @@ const showVerifyEmailDialog = () => {
return;
}
await db.user.sendVerificationEmail();
await db.user.sendVerificationEmail(
useUserStore.getState().user?.email
);
SettingsService.set({
lastVerificationEmailTime: Date.now()
});