From 4e09f3e3e0e0ed5a2cedf14bc10a4ce4387cc795 Mon Sep 17 00:00:00 2001 From: Vesa Luusua Date: Mon, 15 Feb 2021 21:35:29 +0200 Subject: [PATCH] src/default-location-searches.js: import/no-anonymous-default-export --- src/default-location-searches.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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;