From e90ac205a6f8364c82bf09178a6f90b7cb0aca27 Mon Sep 17 00:00:00 2001 From: Peter Stone Date: Mon, 26 Jan 2026 20:57:32 -1000 Subject: Fix shopping-mode template name to use filename The template was being called with define name "shopping-mode" but standalone page templates should be called by filename "shopping-mode.html". Co-Authored-By: Claude Opus 4.5 --- internal/handlers/handlers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/handlers/handlers.go b/internal/handlers/handlers.go index 0424e40..1c2eb18 100644 --- a/internal/handlers/handlers.go +++ b/internal/handlers/handlers.go @@ -1298,7 +1298,7 @@ func (h *Handler) HandleShoppingMode(w http.ResponseWriter, r *http.Request) { StoreNames: storeNames, } - HTMLResponse(w, h.templates, "shopping-mode", data) + HTMLResponse(w, h.templates, "shopping-mode.html", data) } // HandleShoppingModeToggle toggles an item in shopping mode and returns updated list -- cgit v1.2.3