fix(app): pronoun localisation

they/them is difficult to localise correctly in many non-Western languages
This commit is contained in:
Hampus Kraft 2026-02-19 18:23:31 +00:00
parent a974d11a47
commit 61984cd1a6
No known key found for this signature in database
GPG Key ID: 6090864C465A454D

View File

@ -708,7 +708,6 @@ const MyProfileTabComponent = observer(function MyProfileTabComponent({
<Input
{...form.register('pronouns')}
label={t`Pronouns`}
placeholder={isPerGuildProfile && user?.pronouns ? user.pronouns : t`they/them`}
maxLength={40}
value={form.watch('pronouns') || ''}
error={form.formState.errors.pronouns?.message}