From f52adb64e57cfef6ac35e55744b6855f7f593882 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Tue, 18 Jun 2024 16:58:24 -0500 Subject: [PATCH] Also parse --- src/state/shell/reminders.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/state/shell/reminders.ts b/src/state/shell/reminders.ts index 93ce06c526..6926ac2a35 100644 --- a/src/state/shell/reminders.ts +++ b/src/state/shell/reminders.ts @@ -27,7 +27,7 @@ export function shouldRequestEmailConfirmation(account: SessionAccount) { } // already snoozed today - if (simpleAreDatesEqual(new Date(snoozedAt), new Date())) { + if (simpleAreDatesEqual(new Date(Date.parse(snoozedAt)), new Date())) { return false }