mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-04-21 00:32:04 +00:00
Merge pull request #563 from dusaan-m/main
fix(auth): disable auto-capitalize on password input
This commit is contained in:
commit
dcb5e2d177
1 changed files with 2 additions and 0 deletions
|
|
@ -406,6 +406,7 @@ const AuthScreen: React.FC = () => {
|
||||||
placeholder="Password (min 6 characters)"
|
placeholder="Password (min 6 characters)"
|
||||||
placeholderTextColor="rgba(255,255,255,0.4)"
|
placeholderTextColor="rgba(255,255,255,0.4)"
|
||||||
style={[styles.input, { color: currentTheme.colors.white }]}
|
style={[styles.input, { color: currentTheme.colors.white }]}
|
||||||
|
autoCapitalize="none"
|
||||||
secureTextEntry={!showPassword}
|
secureTextEntry={!showPassword}
|
||||||
value={password}
|
value={password}
|
||||||
onChangeText={setPassword}
|
onChangeText={setPassword}
|
||||||
|
|
@ -454,6 +455,7 @@ const AuthScreen: React.FC = () => {
|
||||||
placeholder="Confirm password"
|
placeholder="Confirm password"
|
||||||
placeholderTextColor="rgba(255,255,255,0.4)"
|
placeholderTextColor="rgba(255,255,255,0.4)"
|
||||||
style={[styles.input, { color: currentTheme.colors.white }]}
|
style={[styles.input, { color: currentTheme.colors.white }]}
|
||||||
|
autoCapitalize="none"
|
||||||
secureTextEntry={!showConfirm}
|
secureTextEntry={!showConfirm}
|
||||||
value={confirmPassword}
|
value={confirmPassword}
|
||||||
onChangeText={setConfirmPassword}
|
onChangeText={setConfirmPassword}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue