diff --git a/src/components/interstitials/FeedTrendingTopics.tsx b/src/components/interstitials/FeedTrendingTopics.tsx index a9666a82be..80080c1fbb 100644 --- a/src/components/interstitials/FeedTrendingTopics.tsx +++ b/src/components/interstitials/FeedTrendingTopics.tsx @@ -215,14 +215,10 @@ function TrendRow({ - {trend.postCount >= 1000 ? ( - 1K+ posts - ) : ( - - {formatCount(i18n, trend.postCount)}{' '} - {plural(trend.postCount, {one: 'post', other: 'posts'})} - - )} + + {formatCount(i18n, trend.postCount)}{' '} + {plural(trend.postCount, {one: 'post', other: 'posts'})} + diff --git a/src/screens/Search/modules/ExploreTrendingTopics.tsx b/src/screens/Search/modules/ExploreTrendingTopics.tsx index eea857bc8b..0b422d162b 100644 --- a/src/screens/Search/modules/ExploreTrendingTopics.tsx +++ b/src/screens/Search/modules/ExploreTrendingTopics.tsx @@ -145,14 +145,10 @@ export function TrendRow({ - {trend.postCount >= 1000 ? ( - 1K+ posts - ) : ( - - {formatCount(i18n, trend.postCount)}{' '} - {plural(trend.postCount, {one: 'post', other: 'posts'})} - - )} + + {formatCount(i18n, trend.postCount)}{' '} + {plural(trend.postCount, {one: 'post', other: 'posts'})} +