From 8d400e9631e8d00cbbf03d5e71e26f98476d7a2e Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Thu, 5 Mar 2026 15:42:12 +0000 Subject: [PATCH] Make location names in JavaScript consistent --- api/types.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/types.go b/api/types.go index fc0cdcc3..29e9256d 100644 --- a/api/types.go +++ b/api/types.go @@ -35,8 +35,8 @@ func NewBounds() Bounds { } type Location struct { - Latitude float64 - Longitude float64 + Latitude float64 `json:"latitude"` + Longitude float64 `json:"longitude"` } type NoteImagePayload struct {