Disable polling in build history

This commit is contained in:
2025-12-15 18:34:05 +01:00
parent 02a1a38286
commit b23273adee

View File

@@ -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);
};
});
</script>