Disable polling in build history

This commit is contained in:
jose-rZM
2025-12-15 18:34:05 +01:00
parent a96fa20ac0
commit d036b2119a

View File

@@ -80,12 +80,10 @@
const pricesInterval = setInterval(fetchPrices, 8000); const pricesInterval = setInterval(fetchPrices, 8000);
const ciInterval = setInterval(fetchCiStatus, 10000); const ciInterval = setInterval(fetchCiStatus, 10000);
const historyInterval = setInterval(fetchBuildHistory, 15000);
return () => { return () => {
clearInterval(pricesInterval); clearInterval(pricesInterval);
clearInterval(ciInterval); clearInterval(ciInterval);
clearInterval(historyInterval);
}; };
}); });
</script> </script>