Skip to content

Commit

Permalink
Small change to make location matching better
Browse files Browse the repository at this point in the history
  • Loading branch information
jmbarne3 committed Jun 19, 2024
1 parent 05a2890 commit e9feba9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/LocationService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ export interface LocationResult {
}

export function SearchForLocation(location_name: string) {
return fetch(`${LOCATIONS_API_URL}?search=${location_name}`);
return fetch(`${LOCATIONS_API_URL}?search="${location_name}"`);
}

0 comments on commit e9feba9

Please sign in to comment.