1
Fork 0

Initial setup login page should hide password input

The form field for password `type` property wasn't set correctly, so passwords
would display in browser as user typed them in
This commit is contained in:
Caleb Rogers 2023-03-07 10:22:20 +08:00
parent dd5aa85a41
commit 9c9cae84d6
1 changed files with 1 additions and 0 deletions

View File

@ -119,6 +119,7 @@ const InitialSetupPage = () => {
? 'Please enter a password' ? 'Please enter a password'
: undefined : undefined
} }
type="password"
/> />
<TextField <TextField
wrapperClassName="my-4" wrapperClassName="my-4"