From f0a1a9802769709700d415c0a18bcc2d01c2caac Mon Sep 17 00:00:00 2001 From: Charles Garrett Date: Fri, 6 Oct 2023 14:26:30 -0400 Subject: [PATCH] chore: remote duplicate logic --- src/utils/notificationsLocalStorage.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/notificationsLocalStorage.ts b/src/utils/notificationsLocalStorage.ts index a82c4bbc6..75f43ad0b 100644 --- a/src/utils/notificationsLocalStorage.ts +++ b/src/utils/notificationsLocalStorage.ts @@ -173,6 +173,6 @@ export const getNotificationLocalStorage = () => { const accountIdLS = getLSAccountId(); - const notificationsLS = isLocalStorageSupported() && JSON.parse(localStorage.getItem(NOTIFICATIONS_STORAGE) || '{}'); + const notificationsLS = JSON.parse(localStorage.getItem(NOTIFICATIONS_STORAGE) || '{}'); return notificationsLS[accountIdLS]; };