diff --git a/src/components/location-search.tsx b/src/components/location-search.tsx index b3c9430b6..8bd4a0348 100644 --- a/src/components/location-search.tsx +++ b/src/components/location-search.tsx @@ -6,10 +6,10 @@ import { defineMessages, useIntl } from 'react-intl'; import { locationSearch } from 'soapbox/actions/events'; import AutosuggestInput, { AutoSuggestion } from 'soapbox/components/autosuggest-input'; -import Icon from 'soapbox/components/icon'; import { useAppDispatch } from 'soapbox/hooks'; import AutosuggestLocation from './autosuggest-location'; +import SvgIcon from './ui/icon/svg-icon'; const noOp = () => {}; @@ -85,7 +85,7 @@ const LocationSearch: React.FC = ({ onSelected }) => { }, [value]); return ( -
+
= ({ onSelected }) => { onKeyDown={handleKeyDown} renderSuggestion={AutosuggestLocation} /> -
- - +
+ +
);