Skip to content

Commit

Permalink
web/rightpanel: use comma instead of slash as separator for pronoun sets
Browse files Browse the repository at this point in the history
  • Loading branch information
tulir committed Jan 3, 2025
1 parent a1a006b commit cb08f43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/ui/rightpanel/UserExtendedProfile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ const UserExtendedProfile = ({ profile, refreshProfile, client, userID }: Extend
<SetTimeZoneElement tz={userTimeZone} client={client} refreshProfile={refreshProfile} />}
{pronouns.length > 0 && <>
<div>Pronouns:</div>
<div>{pronouns.map(pronounSet => ensureString(pronounSet.summary)).join(" / ")}</div>
<div>{pronouns.map(pronounSet => ensureString(pronounSet.summary)).join(", ")}</div>
</>}
</div>
</>
Expand Down

0 comments on commit cb08f43

Please sign in to comment.