ui: change empty replies placeholder button text from 'No replies yet' to '0 replies'

This commit is contained in:
Devesh S
2026-07-23 14:24:06 +05:30
parent 528071ec4d
commit 83f1a29d0d

View File

@@ -515,7 +515,7 @@ export default function Community() {
>
<MessageCircle className="w-3.5 h-3.5" />
<span style={{ fontFamily: 'Poppins, sans-serif' }}>
{ansCount > 0 ? `${ansCount} ${ansCount === 1 ? 'reply' : 'replies'}` : 'No replies yet'}
{ansCount > 0 ? `${ansCount} ${ansCount === 1 ? 'reply' : 'replies'}` : '0 replies'}
</span>
</button>