Fixed icon

This commit is contained in:
2026-06-27 13:47:38 -04:00
parent c18a4189af
commit f3356ff05c
2 changed files with 4 additions and 4 deletions

View File

@@ -41,7 +41,7 @@ async function poll() {
if(history.value.length > MAX_PTS) history.value.shift();
}
onMounted(async () => { await poll(); interval = setInterval(poll, 5000); });
onMounted(async () => { await poll(); interval = setInterval(poll, 1000); });
onUnmounted(() => clearInterval(interval));
</script>