From 7a08341d7231c988bf15b0532ba76df2a545340c Mon Sep 17 00:00:00 2001 From: Jefferson Uchoa Ponte Date: Mon, 11 Mar 2024 14:16:03 -0300 Subject: [PATCH] Change Interval --- src/features/notifications/NotificationButton.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); };