Make location names in JavaScript consistent

This commit is contained in:
Eli Ribble 2026-03-05 15:42:12 +00:00
parent 13cf7a7e2d
commit 8d400e9631
No known key found for this signature in database

View file

@ -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 {