From 0d0f6c9873ea3713fc927f27c89e14009bda808a Mon Sep 17 00:00:00 2001 From: Seongmin Lee Date: Sat, 18 Jul 2026 16:40:54 +0900 Subject: [PATCH] appview/pages: fix loginbase template bug add `BaseParams` to `LoginParams`. We won't set it, but it will make template to render without failing. Signed-off-by: Seongmin Lee --- appview/pages/pages.go | 1 + 1 file changed, 1 insertion(+) diff --git a/appview/pages/pages.go b/appview/pages/pages.go index 192ab5fb..f59b8c4e 100644 --- a/appview/pages/pages.go +++ b/appview/pages/pages.go @@ -338,6 +338,7 @@ func (p *Pages) Favicon(w io.Writer) error { } type LoginParams struct { + BaseParams ReturnUrl string ErrorCode string AddAccount bool -- 2.51.2