From aaa15277704be76b37d36ffe056c808aca642e49 Mon Sep 17 00:00:00 2001 From: Untone Date: Tue, 17 Oct 2023 00:45:22 +0300 Subject: [PATCH] small-fix --- src/context/notifications.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/context/notifications.tsx b/src/context/notifications.tsx index f7b99573..63af695d 100644 --- a/src/context/notifications.tsx +++ b/src/context/notifications.tsx @@ -26,7 +26,7 @@ type NotificationsContextType = { showNotificationsPanel: () => void hideNotificationsPanel: () => void markNotificationAsRead: (notification: ServerNotification) => Promise - setMessageHandler: (MessageHandler) => void + setMessageHandler: (h: MessageHandler) => void } }