change(ui) - user form input length

This commit is contained in:
Shekar Siri 2023-02-03 13:23:34 +01:00
parent 891ea86182
commit 1db2b3c511

View file

@ -59,6 +59,7 @@ function UserForm(props: Props) {
<Input
name="name"
autoFocus
maxLength="50"
value={ user.name }
onChange={ write }
className="w-full"
@ -71,6 +72,7 @@ function UserForm(props: Props) {
<Input
disabled={user.exists()}
name="email"
maxLength="320"
value={ user.email }
onChange={ write }
className="w-full"