diff --git a/src/default-location-searches.js b/src/default-location-searches.js index fd83cf7e7f..b5d666b896 100644 --- a/src/default-location-searches.js +++ b/src/default-location-searches.js @@ -7,7 +7,7 @@ const { LatLng, LatLngBounds } = sdkTypes; // // Each item in the array should be an object with a unique `id` (String) and a // `predictionPlace` (util.types.place) properties. -export default [ +const defaultLocations = [ { id: 'default-helsinki', predictionPlace: { @@ -44,3 +44,4 @@ export default [ }, }, ]; +export default defaultLocations;