@@ -84,6 +84,7 @@ interface AppContextState {
8484
8585 fetchNotifications : ( ) => Promise < void > ;
8686 removeAccountNotifications : ( account : Account ) => Promise < void > ;
87+
8788 markNotificationsAsRead : ( notifications : Notification [ ] ) => Promise < void > ;
8889 markNotificationsAsDone : ( notifications : Notification [ ] ) => Promise < void > ;
8990 unsubscribeNotification : ( notification : Notification ) => Promise < void > ;
@@ -379,6 +380,7 @@ export const AppProvider = ({ children }: { children: ReactNode }) => {
379380
380381 fetchNotifications : fetchNotificationsWithAccounts ,
381382 removeAccountNotifications,
383+
382384 markNotificationsAsRead : markNotificationsAsReadWithAccounts ,
383385 markNotificationsAsDone : markNotificationsAsDoneWithAccounts ,
384386 unsubscribeNotification : unsubscribeNotificationWithAccounts ,
@@ -408,6 +410,7 @@ export const AppProvider = ({ children }: { children: ReactNode }) => {
408410
409411 fetchNotificationsWithAccounts ,
410412 removeAccountNotifications ,
413+
411414 markNotificationsAsReadWithAccounts ,
412415 markNotificationsAsDoneWithAccounts ,
413416 unsubscribeNotificationWithAccounts ,
0 commit comments