From 5c2e15e28b4862f7efc3862d4b0e1a3f9042ceb8 Mon Sep 17 00:00:00 2001 From: Shawn Date: Sat, 30 May 2026 21:20:50 -0400 Subject: [PATCH] ux: persist help overlay dismissed state via localStorage --- static/index.html | 1 + 1 file changed, 1 insertion(+) diff --git a/static/index.html b/static/index.html index 073da70..962833e 100644 --- a/static/index.html +++ b/static/index.html @@ -2069,6 +2069,7 @@ function closeHelpModal(e) { if (e && e.target !== e.currentTarget) return; document.getElementById('helpModalOverlay').classList.remove('open'); + localStorage.setItem('canteen_help_seen', '1'); } document.getElementById('modalConfirmBtn').addEventListener('click', () => closeModal(true));