Fix pluralization for group chat member counts (#10896)

This commit is contained in:
DS Boyce
2026-06-12 15:01:13 -07:00
committed by GitHub
parent cd404023fb
commit 825d25847c
2 changed files with 8 additions and 4 deletions
+1 -1
View File
@@ -62,7 +62,7 @@ export function Card({size}: {size: 'large' | 'small'}) {
<Trans comment="The number of members in a group chat, in the format '{members}/{total} members'.">
{preview.memberCount}/{preview.memberLimit}{' '}
<Plural
value={preview.memberCount}
value={preview.memberLimit}
one="member"
other="members"
/>