From 5518e993e0591b32818c87e059954734035fe6ee Mon Sep 17 00:00:00 2001 From: mkelvers Date: Sat, 2 May 2026 18:30:20 +0200 Subject: [PATCH] fix: pass user to watchlist template --- api/watchlist/handler.go | 1 + 1 file changed, 1 insertion(+) diff --git a/api/watchlist/handler.go b/api/watchlist/handler.go index e3373f6..c5df46c 100644 --- a/api/watchlist/handler.go +++ b/api/watchlist/handler.go @@ -138,6 +138,7 @@ func (h *Handler) HandleGetWatchlist(w http.ResponseWriter, r *http.Request) { } data := map[string]any{ + "User": user, "CurrentPath": r.URL.Path, "WatchlistByStatus": watchlistByStatus, "AllEntries": allEntries,