Do not autocapitalize password fields

This commit is contained in:
Keannu Bernasol 2023-09-20 17:44:58 +08:00
parent 511f293ff1
commit 12e3d29822
2 changed files with 2 additions and 0 deletions

View file

@ -59,6 +59,7 @@ export default function Login() {
placeholderTextColor="white"
secureTextEntry={true}
value={creds.password}
autoCapitalize={"none"}
onChange={(
e: NativeSyntheticEvent<TextInputChangeEventData>
): void => {

View file

@ -113,6 +113,7 @@ export default function Register() {
placeholderTextColor={colors.text_default}
secureTextEntry={true}
value={user.password}
autoCapitalize={"none"}
onChange={(
e: NativeSyntheticEvent<TextInputChangeEventData>
): void => {