diff --git a/app/containers/markdown/Hashtag.tsx b/app/containers/markdown/Hashtag.tsx index bdfd1031..482740ed 100644 --- a/app/containers/markdown/Hashtag.tsx +++ b/app/containers/markdown/Hashtag.tsx @@ -18,7 +18,7 @@ const Hashtag = React.memo(({ hashtag, channels, navToRoomInfo, style = [] }: IH const handlePress = () => { const index = channels?.findIndex(channel => channel.name === hashtag); - if (index && navToRoomInfo) { + if (typeof index !== 'undefined' && navToRoomInfo) { const navParam = { t: 'c', rid: channels?.[index]._id