From d0f37c18ccfa82a04befe6a0c4e7be741af10085 Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Wed, 7 Jan 2026 14:24:56 +0000 Subject: [PATCH] Make inspections failure for cells have unique error message --- html.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html.go b/html.go index c978fed4..781ae200 100644 --- a/html.go +++ b/html.go @@ -274,7 +274,7 @@ func htmlCell(ctx context.Context, w http.ResponseWriter, user *models.User, c i } inspections, err := inspectionsByCell(ctx, org, h3.Cell(c)) if err != nil { - respondError(w, "Failed to get inspections", err, http.StatusInternalServerError) + respondError(w, "Failed to get inspections by cell", err, http.StatusInternalServerError) return } geojson, err := h3ToGeoJSON([]h3.Cell{h3.Cell(c)})