Skip to content

Commit

Permalink
[PROTO-1693] Fix tag search triggering autocomplete (#7913)
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacsolo authored Mar 25, 2024
1 parent eeb6e19 commit 0183bf8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/mobile/src/screens/search-screen/SearchScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export const SearchScreen = () => {
)

const renderSearchContent = () => {
if (hasResults) {
if (hasResults && !searchBarText.startsWith('#')) {
return <SearchResults />
}
if (searchBarText && !hasResults) {
Expand Down

0 comments on commit 0183bf8

Please sign in to comment.