Hashtag: fix conditional display of "x people talking"

This commit is contained in:
Alex Gleason 2023-07-25 23:23:33 -05:00
parent 497ca73ede
commit f9b4a89ead
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7

View file

@ -23,7 +23,7 @@ const Hashtag: React.FC<IHashtag> = ({ hashtag }) => {
<Text tag='span' size='sm' weight='semibold'>#{hashtag.name}</Text> <Text tag='span' size='sm' weight='semibold'>#{hashtag.name}</Text>
</Link> </Link>
{hashtag.history && ( {Boolean(count) && (
<Text theme='muted' size='sm'> <Text theme='muted' size='sm'>
<FormattedMessage <FormattedMessage
id='trends.count_by_accounts' id='trends.count_by_accounts'