Merge pull request #563 from dusaan-m/main

fix(auth): disable auto-capitalize on password input
This commit is contained in:
Nayif 2026-02-28 23:52:02 +05:30 committed by GitHub
commit dcb5e2d177
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -406,6 +406,7 @@ const AuthScreen: React.FC = () => {
placeholder="Password (min 6 characters)"
placeholderTextColor="rgba(255,255,255,0.4)"
style={[styles.input, { color: currentTheme.colors.white }]}
autoCapitalize="none"
secureTextEntry={!showPassword}
value={password}
onChangeText={setPassword}
@ -454,6 +455,7 @@ const AuthScreen: React.FC = () => {
placeholder="Confirm password"
placeholderTextColor="rgba(255,255,255,0.4)"
style={[styles.input, { color: currentTheme.colors.white }]}
autoCapitalize="none"
secureTextEntry={!showConfirm}
value={confirmPassword}
onChangeText={setConfirmPassword}