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}
|
ref={loginUsernameRef}
|
||||||
placeholder="Username"
|
placeholder="Username"
|
||||||
label="Username"
|
label="Username"
|
||||||
|
autocorrect="off"
|
||||||
|
autocapitalize="none"
|
||||||
/>
|
/>
|
||||||
</FieldRow>
|
</FieldRow>
|
||||||
<FieldRow>
|
<FieldRow>
|
||||||
|
|
|
@ -60,6 +60,8 @@ export function RegisterPage({ onRegister, error }) {
|
||||||
ref={registerUsernameRef}
|
ref={registerUsernameRef}
|
||||||
placeholder="Username"
|
placeholder="Username"
|
||||||
label="Username"
|
label="Username"
|
||||||
|
autocorrect="off"
|
||||||
|
autocapitalize="none"
|
||||||
/>
|
/>
|
||||||
</FieldRow>
|
</FieldRow>
|
||||||
<FieldRow>
|
<FieldRow>
|
||||||
|
|
Loading…
Add table
Reference in a new issue