diff --git a/src/components/location-search.tsx b/src/components/location-search.tsx index 9867a52fb..39681f3f0 100644 --- a/src/components/location-search.tsx +++ b/src/components/location-search.tsx @@ -93,7 +93,7 @@ const LocationSearch: React.FC = ({ onSelected }) => { placeholder={intl.formatMessage(messages.placeholder)} value={value} onChange={handleChange} - suggestions={locationIds.toList()} + suggestions={Array.from(locationIds)} onSuggestionsFetchRequested={noOp} onSuggestionsClearRequested={noOp} onSuggestionSelected={handleSelected}