style(radial): match Navi color palette in light and dark themes

This commit is contained in:
Matt 2026-04-26 06:17:48 +00:00
commit 15e6267022
17 changed files with 6318 additions and 47 deletions

10
src/utils/place.js Normal file
View file

@ -0,0 +1,10 @@
/** Build display address from raw result data */
export function buildAddress(place) {
if (place.address) return place.address
const raw = place.raw || {}
const street = raw.housenumber && raw.street
? `${raw.housenumber} ${raw.street}`
: raw.street
const parts = [street, raw.city, raw.state, raw.postcode].filter(Boolean)
return parts.join(', ') || null
}