From b23273adee50ccc30ad7ece489689e572c27eb05 Mon Sep 17 00:00:00 2001 From: husbando_enjoyer Date: Mon, 15 Dec 2025 18:34:05 +0100 Subject: [PATCH] Disable polling in build history --- frontend/src/App.svelte | 2 -- 1 file changed, 2 deletions(-) diff --git a/frontend/src/App.svelte b/frontend/src/App.svelte index 95b844d..983e0aa 100644 --- a/frontend/src/App.svelte +++ b/frontend/src/App.svelte @@ -80,12 +80,10 @@ const pricesInterval = setInterval(fetchPrices, 8000); const ciInterval = setInterval(fetchCiStatus, 10000); - const historyInterval = setInterval(fetchBuildHistory, 15000); return () => { clearInterval(pricesInterval); clearInterval(ciInterval); - clearInterval(historyInterval); }; });