diff options
| author | Anhgelus Morhtuuzh <william@herges.fr> | 2026-02-04 17:04:55 +0100 |
|---|---|---|
| committer | Anhgelus Morhtuuzh <william@herges.fr> | 2026-02-04 17:07:39 +0100 |
| commit | 82ad3593a4735055d9b362ab94bc4a9e4f20e4a4 (patch) | |
| tree | 89c1dd77aaa863c7369d762ab8e9f7aba63272b9 /backend/home.go | |
| parent | 2cab73140e45e1788af7810ddecbb251548d3fe6 (diff) | |
feat(frontend): smaller list display instead of bigger one
Diffstat (limited to 'backend/home.go')
| -rw-r--r-- | backend/home.go | 2 |
1 files changed, 1 insertions, 1 deletions
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 } |
