Skip to content

Commit

Permalink
Fix capitalization of 'clubs'
Browse files Browse the repository at this point in the history
  • Loading branch information
duogenesis committed Dec 5, 2023
1 parent 88ccaef commit 8272d1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/prospect-profile-screen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -722,7 +722,7 @@ const Body = ({
}
{data !== undefined && data.other_clubs.length > 0 &&
<>
<Title>{data.mutual_clubs.length > 0 ? 'Other ' : ''}clubs</Title>
<Title>{data.mutual_clubs.length > 0 ? 'Other clubs' : 'Clubs'}</Title>
<Clubs>
{data.other_clubs.map((clubName, i) =>
<Club
Expand Down

0 comments on commit 8272d1f

Please sign in to comment.