From d49e756c21c255593958cd962f8eb317f8593e75 Mon Sep 17 00:00:00 2001 From: husbando_enjoyer Date: Wed, 24 Dec 2025 13:39:10 +0100 Subject: [PATCH] Update intervals --- frontend/src/App.svelte | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/App.svelte b/frontend/src/App.svelte index 4782c98..12f227d 100644 --- a/frontend/src/App.svelte +++ b/frontend/src/App.svelte @@ -96,8 +96,8 @@ along with this program. If not, see . if (!ENABLE_POLLING) return; - const pricesInterval = setInterval(fetchPrices, 8000); - const ciInterval = setInterval(fetchCiStatus, 10000); + const pricesInterval = setInterval(fetchPrices, 180000); + const ciInterval = setInterval(fetchCiStatus, 300000); return () => { clearInterval(pricesInterval);