Merge branch 'fix-empty-search' of https://github.com/darnfish/social-app into darnfish-fix-empty-search
commit
17fcc2f25c
|
@ -79,6 +79,8 @@ export const SearchScreen = withAuthRequired(
|
|||
}, [setQuery, autocompleteView, store])
|
||||
|
||||
const onSubmitQuery = React.useCallback(() => {
|
||||
if (query.length === 0) return
|
||||
|
||||
const model = new SearchUIModel(store)
|
||||
model.fetch(query)
|
||||
setSearchUIModel(model)
|
||||
|
|
Loading…
Reference in New Issue