From f49e115b261ac9c6b05af4f80672d35721109ff4 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Tue, 18 Jun 2024 16:28:19 -0500 Subject: [PATCH] Remove redundant check --- src/state/shell/reminders.ts | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/src/state/shell/reminders.ts b/src/state/shell/reminders.ts index fd5bb0b0a8..06edff25a3 100644 --- a/src/state/shell/reminders.ts +++ b/src/state/shell/reminders.ts @@ -32,13 +32,7 @@ export function shouldRequestEmailConfirmation(account: SessionAccount) { return false } - // snoozed recently - if (snoozedAt !== today) { - snoozeEmailConfirmationPrompt() - return true - } - - // should never happen + // snooze and re-prompt snoozeEmailConfirmationPrompt() return true }