fix username length

This commit is contained in:
hzrd149 2023-03-09 11:40:18 -06:00
parent 9acb0687ce
commit 9a3912af19

View File

@ -90,7 +90,7 @@ const MetadataForm = ({ defaultValues, onSubmit }: MetadataFormProps) => {
minLength: 2,
maxLength: 64,
required: true,
pattern: /^[a-zA-Z0-9_-]{4,16}$/,
pattern: /^[a-zA-Z0-9_-]{4,64}$/,
})}
/>
<FormErrorMessage>{errors.username?.message}</FormErrorMessage>