diff --git a/src/features/notifications/NotificationButton.tsx b/src/features/notifications/NotificationButton.tsx index bd94259..510eb65 100644 --- a/src/features/notifications/NotificationButton.tsx +++ b/src/features/notifications/NotificationButton.tsx @@ -72,7 +72,7 @@ export function NotificationButton() { useEffect(() => { const intervalId = setInterval(() => { refetch(); - }, 3000); + }, 8000); return () => { clearInterval(intervalId); };