Skip to content

Commit b289313

Browse files
committed
fixed typo
1 parent 7f4b94b commit b289313

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

frontend/app/api/geocode/route.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ function photonFeatureToAddressResult(feature: PhotonFeature): AddressResult {
1818
if (props.city) displayParts.push(props.city);
1919
if (props.state) displayParts.push(props.state);
2020

21-
const displayName = `${displayParts.join(", ")} + ${props.postcode ? props.postcode : ""}`;
21+
const displayName = `${displayParts.join(", ")} ${props.postcode ? props.postcode : ""}`;
2222

2323
return {
2424
placeId: props.osm_id,

0 commit comments

Comments
 (0)