mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-03-11 17:45:38 +00:00
fix(auth): disable auto-capitalize on password input
This commit is contained in:
parent
4f2eea4158
commit
6b566cf69d
1 changed files with 2 additions and 0 deletions
|
|
@ -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}
|
||||
|
|
|
|||
Loading…
Reference in a new issue