Release 2025-05-21-AQ5C

This commit is contained in:
pluja
2025-05-21 07:03:39 +00:00
parent 17b3642f7e
commit 845aa1185c
25 changed files with 261 additions and 185 deletions

View File

@@ -48,7 +48,7 @@ const inputErrors = isInputError(result?.error) ? result.error.fields : {}
name="displayName"
error={inputErrors.displayName}
inputProps={{
value: user.displayName ?? '',
value: user.displayName,
maxlength: 100,
disabled: !user.karmaUnlocks.displayName,
}}
@@ -62,7 +62,7 @@ const inputErrors = isInputError(result?.error) ? result.error.fields : {}
name="link"
error={inputErrors.link}
inputProps={{
value: user.link ?? '',
value: user.link,
type: 'url',
placeholder: 'https://example.com',
disabled: !user.karmaUnlocks.websiteLink,