From 9bf4e68dcdac3356fe921df9cf184ca8a4aace0d Mon Sep 17 00:00:00 2001 From: Ammar Ahmed Date: Thu, 19 Mar 2026 09:29:26 +0500 Subject: [PATCH] mobile: fix resend email not working --- apps/mobile/app/services/premium.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/mobile/app/services/premium.ts b/apps/mobile/app/services/premium.ts index 7a187d16a..fb837dd64 100644 --- a/apps/mobile/app/services/premium.ts +++ b/apps/mobile/app/services/premium.ts @@ -113,7 +113,9 @@ const showVerifyEmailDialog = () => { return; } - await db.user.sendVerificationEmail(); + await db.user.sendVerificationEmail( + useUserStore.getState().user?.email + ); SettingsService.set({ lastVerificationEmailTime: Date.now() });