chore: empty query text (#566)

pull/567/head^2
Zeng1998 2 years ago committed by GitHub
parent 2daf085ce4
commit ff0db82dc3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -27,7 +27,7 @@ const SearchBar = () => {
const handleTextQueryInput = (event: React.FormEvent<HTMLInputElement>) => {
const text = event.currentTarget.value;
setQueryText(text);
locationService.setTextQuery(text);
locationService.setTextQuery(text.length === 0 ? undefined : text);
};
return (

Loading…
Cancel
Save