From 6b566cf69d683fdfc140652d479593f9f35c7db0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Du=C5=A1an=20Milivojevi=C4=87?= Date: Sat, 28 Feb 2026 16:26:05 +0100 Subject: [PATCH] fix(auth): disable auto-capitalize on password input --- src/screens/AuthScreen.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/screens/AuthScreen.tsx b/src/screens/AuthScreen.tsx index 4033429f..7c42cfb0 100644 --- a/src/screens/AuthScreen.tsx +++ b/src/screens/AuthScreen.tsx @@ -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}