Skip to content

Commit

Permalink
Fix grammar in clubs for people/person (#149)
Browse files Browse the repository at this point in the history
  • Loading branch information
duogenesis authored Dec 10, 2023
1 parent f3aa6ce commit da7a12d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion components/club-selector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,11 @@ const UnselectedClub = ({
marginBottom: 5,
}}
>{clubItem.name}</Basic>
<DefaultText style={{fontWeight: '700'}}>{clubItem.count_members} people</DefaultText>
<DefaultText style={{fontWeight: '700'}}>
{clubItem.count_members}
{' '}
{clubItem.count_members === 1 ? 'person' : 'people'}
</DefaultText>
</Pressable>
);
};
Expand Down

0 comments on commit da7a12d

Please sign in to comment.