mirror of
https://github.com/lemeow125/StudE-Frontend.git
synced 2024-11-17 06:19:25 +08:00
Do not autocapitalize password fields
This commit is contained in:
parent
511f293ff1
commit
12e3d29822
2 changed files with 2 additions and 0 deletions
|
@ -59,6 +59,7 @@ export default function Login() {
|
|||
placeholderTextColor="white"
|
||||
secureTextEntry={true}
|
||||
value={creds.password}
|
||||
autoCapitalize={"none"}
|
||||
onChange={(
|
||||
e: NativeSyntheticEvent<TextInputChangeEventData>
|
||||
): void => {
|
||||
|
|
|
@ -113,6 +113,7 @@ export default function Register() {
|
|||
placeholderTextColor={colors.text_default}
|
||||
secureTextEntry={true}
|
||||
value={user.password}
|
||||
autoCapitalize={"none"}
|
||||
onChange={(
|
||||
e: NativeSyntheticEvent<TextInputChangeEventData>
|
||||
): void => {
|
||||
|
|
Loading…
Reference in a new issue