From 723a60e979f002eac0e2e8babc6b97d13afb3fe0 Mon Sep 17 00:00:00 2001 From: DS Boyce <260543580+ds-boyce@users.noreply.github.com> Date: Thu, 23 Jul 2026 10:26:47 -0700 Subject: [PATCH] Display post counts greater than 1,000 (#11242) --- src/components/interstitials/FeedTrendingTopics.tsx | 12 ++++-------- src/screens/Search/modules/ExploreTrendingTopics.tsx | 12 ++++-------- 2 files changed, 8 insertions(+), 16 deletions(-) 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'})} +