From 83f1a29d0d9f7ad53be41758668367b81172a84c Mon Sep 17 00:00:00 2001 From: Devesh S Date: Thu, 23 Jul 2026 14:24:06 +0530 Subject: [PATCH] ui: change empty replies placeholder button text from 'No replies yet' to '0 replies' --- src/pages/Community/Community.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/Community/Community.tsx b/src/pages/Community/Community.tsx index 02d86e1..ba48977 100644 --- a/src/pages/Community/Community.tsx +++ b/src/pages/Community/Community.tsx @@ -515,7 +515,7 @@ export default function Community() { > - {ansCount > 0 ? `${ansCount} ${ansCount === 1 ? 'reply' : 'replies'}` : 'No replies yet'} + {ansCount > 0 ? `${ansCount} ${ansCount === 1 ? 'reply' : 'replies'}` : '0 replies'}