ui: change empty replies placeholder button text from 'No replies yet' to '0 replies'
This commit is contained in:
@@ -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>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user