fix: linting
All checks were successful
Build and Push Docker Image / Build-And-Push-Docker-Image (push) Successful in 1m29s

This commit is contained in:
2026-01-08 19:33:42 +01:00
parent a570c44d75
commit 0d56d86a41

View File

@@ -70,7 +70,7 @@ func (h HandlerImpl) handleInlineEditSearch() http.HandlerFunc {
search := r.FormValue("search")
tags, err := h.s.find(r.Context(), user, search)
if err != nil {
core.HandleError(w, r, fmt.Errorf("Could not find tags: %w", core.ErrInternal))
core.HandleError(w, r, fmt.Errorf("could not find tags: %w", core.ErrInternal))
}
comp := inlineEditSearch(tags)