about summary refs log tree commit diff stats
path: root/internal/components/page.templ
diff options
context:
space:
mode:
authorAlan Pearce2025-03-16 16:38:52 +0100
committerAlan Pearce2025-03-16 16:38:52 +0100
commitf775db95d59a56feeafa6a4e147885c814bf5fb7 (patch)
treeb10f1d2a9a5ded23df96a227445b963760c305d6 /internal/components/page.templ
parent9015baf955c94a806c01b3dcd5648c8e68ad2685 (diff)
downloadsearchix-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.templ2
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
 	})