[web] Clear search bar state when value is falsey

Updates https://github.com/ente-io/ente/pull/1453 so that we also clear the
existing state by calling the setFoo methods even when value is falsey.
This commit is contained in:
Manav Rathi 2024-04-16 09:03:35 +05:30
parent 020ed59d40
commit d7b0beb949
No known key found for this signature in database

View file

@ -56,10 +56,8 @@ export default function SearchInput(props: Iprops) {
const [value, setValue] = useState<SearchOption>(null);
const appContext = useContext(AppContext);
const handleChange = (value: SearchOption) => {
if (value) {
setValue(value);
setQuery(value.label);
}
setValue(value);
setQuery(value?.label);
blur();
};