From 2b7ace3056b28c5fe63505ceb227e3bc6367b5cf Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Fri, 17 Apr 2026 03:05:50 +0000 Subject: [PATCH] Changes Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com> --- src/components/notifications/notification-bell.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/notifications/notification-bell.tsx b/src/components/notifications/notification-bell.tsx index 796eeeb..8e025a8 100644 --- a/src/components/notifications/notification-bell.tsx +++ b/src/components/notifications/notification-bell.tsx @@ -48,7 +48,7 @@ export function NotificationBell() { if (!user) return; load(); const ch = supabase - .channel(`notif-${user.id}`) + .channel(`notif-${user.id}-${Math.random().toString(36).slice(2)}`) .on( "postgres_changes", { event: "*", schema: "public", table: "notifications", filter: `user_id=eq.${user.id}` },