diff --git a/index.html b/index.html
index 6754a97..f4556a0 100644
--- a/index.html
+++ b/index.html
@@ -482,6 +482,7 @@
// Return to normal after 1.5s - fetch fresh state
setTimeout(async () => {
+ isReacting = false;
try {
const resp = await fetch("/status");
if (resp.ok) {
@@ -489,7 +490,6 @@
updateDisplay(freshData);
}
} catch (_) {}
- isReacting = false;
}, 1500);
}
});