diff options
author | Alan Pearce | 2025-03-16 16:38:52 +0100 |
---|---|---|
committer | Alan Pearce | 2025-03-16 16:38:52 +0100 |
commit | f775db95d59a56feeafa6a4e147885c814bf5fb7 (patch) | |
tree | b10f1d2a9a5ded23df96a227445b963760c305d6 /internal/components/page.templ | |
parent | 9015baf955c94a806c01b3dcd5648c8e68ad2685 (diff) | |
download | searchix-f775db95d59a56feeafa6a4e147885c814bf5fb7.tar.lz searchix-f775db95d59a56feeafa6a4e147885c814bf5fb7.tar.zst searchix-f775db95d59a56feeafa6a4e147885c814bf5fb7.zip |
fix: build error caused by incomplete commit
Diffstat (limited to 'internal/components/page.templ')
-rw-r--r-- | internal/components/page.templ | 2 |
1 files changed, 1 insertions, 1 deletions
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 }) |