diff options
author | Eric Bailey <git@esb.lol> | 2024-07-11 17:35:13 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-11 23:35:13 +0100 |
commit | 119b4d3e0aaff1328952294d975bacb88490d9b8 (patch) | |
tree | 8f9f3a2accef29e3e6d67faa87cfdb05ab5a9708 /src/screens/Hashtag.tsx | |
parent | 74186950b2d7f3f5829e3d5bb8919c4a43293ba8 (diff) | |
download | voidsky-119b4d3e0aaff1328952294d975bacb88490d9b8.tar.zst |
Fix search hashtags by author (#4773)
Diffstat (limited to 'src/screens/Hashtag.tsx')
-rw-r--r-- | src/screens/Hashtag.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/screens/Hashtag.tsx b/src/screens/Hashtag.tsx index 34539f510..8bcb9359e 100644 --- a/src/screens/Hashtag.tsx +++ b/src/screens/Hashtag.tsx @@ -169,7 +169,7 @@ function HashtagScreenTab({ const queryParam = React.useMemo(() => { if (!author) return fullTag - return `${fullTag} from:${sanitizeHandle(author)}` + return `${fullTag} from:${author}` }, [fullTag, author]) const { |