From fa43f68a8f050ce327c3a0ac8d2d233418ecee8c Mon Sep 17 00:00:00 2001 From: Elias Nahum Date: Mon, 17 Jul 2023 11:36:28 -0400 Subject: [PATCH] Fix search hashtag (#7459) --- app/components/markdown/hashtag/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/markdown/hashtag/index.tsx b/app/components/markdown/hashtag/index.tsx index b908978c9..4b0d3af5c 100644 --- a/app/components/markdown/hashtag/index.tsx +++ b/app/components/markdown/hashtag/index.tsx @@ -20,7 +20,7 @@ const Hashtag = ({hashtag, linkStyle}: HashtagProps) => { DeviceEventEmitter.emit(Navigation.NAVIGATE_TO_TAB, { screen: Screens.SEARCH, params: { - searchTerm: hashtag, + searchTerm: `#${hashtag}`, }, }); };