From 70c60647c7ed0683b436d4da75d11beb307b03a4 Mon Sep 17 00:00:00 2001 From: proddy Date: Sun, 29 Mar 2026 15:40:19 +0200 Subject: [PATCH] refresh changed from 3 to 5 seconds --- interface/src/utils/useInterval.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/src/utils/useInterval.ts b/interface/src/utils/useInterval.ts index 82cbaaf1e..4ce7928da 100644 --- a/interface/src/utils/useInterval.ts +++ b/interface/src/utils/useInterval.ts @@ -1,6 +1,6 @@ import { useEffect, useRef } from 'react'; -const DEFAULT_DELAY = 3000; +const DEFAULT_DELAY = 5000; /** * Custom hook for setting up an interval with proper cleanup