Disable username autocorrect and auto capitalize
This commit is contained in:
parent
f91b4b9e7d
commit
f3a057968d
2 changed files with 4 additions and 0 deletions
|
@ -60,6 +60,8 @@ export function LoginPage({ onLogin, error }) {
|
|||
ref={loginUsernameRef}
|
||||
placeholder="Username"
|
||||
label="Username"
|
||||
autocorrect="off"
|
||||
autocapitalize="none"
|
||||
/>
|
||||
</FieldRow>
|
||||
<FieldRow>
|
||||
|
|
|
@ -60,6 +60,8 @@ export function RegisterPage({ onRegister, error }) {
|
|||
ref={registerUsernameRef}
|
||||
placeholder="Username"
|
||||
label="Username"
|
||||
autocorrect="off"
|
||||
autocapitalize="none"
|
||||
/>
|
||||
</FieldRow>
|
||||
<FieldRow>
|
||||
|
|
Loading…
Add table
Reference in a new issue