Fix search hashtag (#7459)

This commit is contained in:
Elias Nahum 2023-07-17 11:36:28 -04:00 committed by GitHub
parent 3e700f841d
commit fa43f68a8f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -20,7 +20,7 @@ const Hashtag = ({hashtag, linkStyle}: HashtagProps) => {
DeviceEventEmitter.emit(Navigation.NAVIGATE_TO_TAB, {
screen: Screens.SEARCH,
params: {
searchTerm: hashtag,
searchTerm: `#${hashtag}`,
},
});
};