Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'fix-empty-search' of https://github.com/darnfish/social-app into darnfish-fix-empty-search

+2
+2
src/view/screens/SearchMobile.tsx
··· 79 79 }, [setQuery, autocompleteView, store]) 80 80 81 81 const onSubmitQuery = React.useCallback(() => { 82 + if (query.length === 0) return 83 + 82 84 const model = new SearchUIModel(store) 83 85 model.fetch(query) 84 86 setSearchUIModel(model)