Skip to content

Commit 6bd5430

Browse files
authored
fix: input not focus able on register page
1 parent 6a1edc9 commit 6bd5430

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

client/pages/registerUser/index.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ export default async function registerUser({ mode }) {
3737
<div>
3838
<fieldset>
3939
<Input
40-
autofill={false}
4140
value={user.email}
4241
onchange={(e) => {
4342
email = e.target.value;
@@ -57,7 +56,7 @@ export default async function registerUser({ mode }) {
5756
{mode === 'edit' ? (
5857
<a href='/change-password'>Change password</a>
5958
) : (
60-
<Input autofill={false} type='password' name='password' label='Password' placeholder='password' />
59+
<Input type='password' name='password' label='Password' placeholder='password' />
6160
)}
6261

6362
<div className='error'>{errorText}</div>

0 commit comments

Comments
 (0)