From 1b1beceb4a2c4f494a5c30e0ca4c58a28927713c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?nicole=20miko=C5=82ajczyk?= Date: Thu, 26 Feb 2026 15:18:17 +0100 Subject: [PATCH] nicolium: fix notification marker update MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: nicole mikołajczyk --- packages/pl-fe/src/api/hooks/streaming/use-user-stream.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/pl-fe/src/api/hooks/streaming/use-user-stream.ts b/packages/pl-fe/src/api/hooks/streaming/use-user-stream.ts index 7a7d61c39..d6bc00e5f 100644 --- a/packages/pl-fe/src/api/hooks/streaming/use-user-stream.ts +++ b/packages/pl-fe/src/api/hooks/streaming/use-user-stream.ts @@ -167,7 +167,7 @@ const useUserStream = () => { deleteAnnouncement(event.payload); break; case 'marker': - queryClient.setQueryData(['markers', 'notifications'], event.payload ?? null); + queryClient.setQueryData(['markers', 'notifications'], event.payload.notifications ?? null); break; } }, []);