From cb08f435357ef342f00b33deb2eec6da702215cc Mon Sep 17 00:00:00 2001 From: Tulir Asokan Date: Fri, 3 Jan 2025 16:29:21 +0200 Subject: [PATCH] web/rightpanel: use comma instead of slash as separator for pronoun sets --- web/src/ui/rightpanel/UserExtendedProfile.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/ui/rightpanel/UserExtendedProfile.tsx b/web/src/ui/rightpanel/UserExtendedProfile.tsx index 236e1ef..e745f53 100644 --- a/web/src/ui/rightpanel/UserExtendedProfile.tsx +++ b/web/src/ui/rightpanel/UserExtendedProfile.tsx @@ -105,7 +105,7 @@ const UserExtendedProfile = ({ profile, refreshProfile, client, userID }: Extend } {pronouns.length > 0 && <>
Pronouns:
-
{pronouns.map(pronounSet => ensureString(pronounSet.summary)).join(" / ")}
+
{pronouns.map(pronounSet => ensureString(pronounSet.summary)).join(", ")}
}