From 8c7d9b376249807e1595f440fa72c77cafbdaf6f Mon Sep 17 00:00:00 2001 From: Elizabeth Date: Wed, 3 Apr 2024 15:59:12 -0600 Subject: [PATCH] dont always 200 on template render --- api/template.go | 1 - 1 file changed, 1 deletion(-) diff --git a/api/template.go b/api/template.go index eeaeb51..d637c64 100644 --- a/api/template.go +++ b/api/template.go @@ -66,7 +66,6 @@ func TemplateContinuation(path string, showBase bool) Continuation { return failure(context, req, resp) } - resp.WriteHeader(200) resp.Header().Set("Content-Type", "text/html") resp.Write(html.Bytes()) return success(context, req, resp)