From d036b2119a94c9982a77b7d5d08e33fa3eaad326 Mon Sep 17 00:00:00 2001 From: jose-rZM <100773386+jose-rZM@users.noreply.github.com> 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); }; });