From 82ad3593a4735055d9b362ab94bc4a9e4f20e4a4 Mon Sep 17 00:00:00 2001 From: Anhgelus Morhtuuzh Date: Wed, 4 Feb 2026 17:04:55 +0100 Subject: feat(frontend): smaller list display instead of bigger one --- backend/home.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'backend/home.go') diff --git a/backend/home.go b/backend/home.go index f824a69..0fae11a 100644 --- a/backend/home.go +++ b/backend/home.go @@ -27,7 +27,7 @@ func (h *homeData) SetData(d *data) { func HandleHome(r *chi.Mux) { r.Get("/", func(w http.ResponseWriter, r *http.Request) { cfg := r.Context().Value(configKey).(*Config) - d := handleGenericSectionDisplay(w, r, cfg.Sections, 3) + d := handleGenericSectionDisplay(w, r, cfg.Sections, 4) if d == nil { return } -- cgit v1.2.3