diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/screens/onboarding/Login.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/screens/onboarding/Login.tsx b/src/screens/onboarding/Login.tsx index 97f4fe87..49ca5ff4 100644 --- a/src/screens/onboarding/Login.tsx +++ b/src/screens/onboarding/Login.tsx @@ -263,6 +263,7 @@ const Login: React.FC<LoginProps> = ({navigation}: LoginProps) => { valid={form.isValidUser} invalidWarning="Username must be at least 6 characters and can only contain letters, numbers, periods, and underscores." attemptedSubmit={form.attemptedSubmit} + autoCorrect={false} /> <TaggInput @@ -280,6 +281,7 @@ const Login: React.FC<LoginProps> = ({navigation}: LoginProps) => { invalidWarning="Password must be at least 8 characters long." attemptedSubmit={form.attemptedSubmit} ref={inputRef} + autoCorrect={false} /> <ForgotPassword /> <TaggSquareButton |