From 887666e63c03affdd9f8f90e56ff46e533a179fc Mon Sep 17 00:00:00 2001 From: Justin Oroz Date: Mon, 27 Sep 2021 15:10:54 -0700 Subject: [PATCH] correct `ignored` argument --- src/hooks/useNotifications.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hooks/useNotifications.ts b/src/hooks/useNotifications.ts index 0e2b0f460..4165387cb 100644 --- a/src/hooks/useNotifications.ts +++ b/src/hooks/useNotifications.ts @@ -158,7 +158,7 @@ export const useNotifications = (): NotificationsState => { )}notifications/threads/${id}/subscription`, 'PUT', token, - { ignore: true } + { ignored: true } ); await markNotification(accounts, id, hostname); } catch (err) {