From f775db95d59a56feeafa6a4e147885c814bf5fb7 Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Sun, 16 Mar 2025 16:38:52 +0100 Subject: fix: build error caused by incomplete commit --- internal/components/page.templ | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'internal/components/page.templ') diff --git a/internal/components/page.templ b/internal/components/page.templ index 63d0439..4ba3741 100644 --- a/internal/components/page.templ +++ b/internal/components/page.templ @@ -81,7 +81,7 @@ templ script(s *frontend.Asset) { } func Unsafe(html string) templ.Component { - return templ.ComponentFunc(func(_ context.Context, w io.Writer) (err errors.E) { + return templ.ComponentFunc(func(_ context.Context, w io.Writer) (err error) { _, err = io.WriteString(w, html) return }) -- cgit 1.4.1