From 2089a06512577013024449630631a0e6e0ecd3aa Mon Sep 17 00:00:00 2001 From: Spencer Date: Thu, 26 Feb 2026 20:58:46 -0600 Subject: [PATCH] Fix: move isReacting=false before updateDisplay call --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } });