From 7b26a01063e64a6ee8772d3fa79eb21d484380da Mon Sep 17 00:00:00 2001 From: MerlinScheurer Date: Fri, 28 Mar 2025 11:58:27 +0100 Subject: [PATCH] Refac reduce notification interval from 500 to 1000 #912 --- frontend/src/components/Notifications.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/Notifications.tsx b/frontend/src/components/Notifications.tsx index 37b0a551..7e177faf 100644 --- a/frontend/src/components/Notifications.tsx +++ b/frontend/src/components/Notifications.tsx @@ -40,7 +40,7 @@ const Notifications = ({ } setNotificationResponse(notifications); - }, 500); + }, 1000); return () => { clearInterval(intervalId);