From 7330d3ad339a3c3145217582f06b077b2e82c03e Mon Sep 17 00:00:00 2001
From: Julien Dessaux <julien.dessaux@adyxax.org>
Date: Tue, 2 Apr 2024 23:40:43 +0200
Subject: [PATCH] chore(ods): remove useless caching directives

---
 main.go | 1 -
 1 file changed, 1 deletion(-)

diff --git a/main.go b/main.go
index 2a06432..ab42630 100644
--- a/main.go
+++ b/main.go
@@ -64,7 +64,6 @@ func postIndex() http.Handler {
 			}
 		}
 		slog.Info("post", "word", query, "invalid", data.Invalid)
-		w.Header().Set("Cache-Control", "no-store, no-cache")
 		indexTemplate.ExecuteTemplate(w, "index.html", data)
 	})
 }