From f9b4a89ead3a1e9997e3f197f543d707ccb56434 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Tue, 25 Jul 2023 23:23:33 -0500 Subject: [PATCH] Hashtag: fix conditional display of "x people talking" --- app/soapbox/components/hashtag.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/soapbox/components/hashtag.tsx b/app/soapbox/components/hashtag.tsx index 8dc74230e..41b2c07a6 100644 --- a/app/soapbox/components/hashtag.tsx +++ b/app/soapbox/components/hashtag.tsx @@ -23,7 +23,7 @@ const Hashtag: React.FC = ({ hashtag }) => { #{hashtag.name} - {hashtag.history && ( + {Boolean(count) && (