From 6308e91de68c3b5a487b485ce6b47361ae635153 Mon Sep 17 00:00:00 2001 From: rcombs Date: Tue, 10 Dec 2024 13:16:45 -0800 Subject: [PATCH] LoginForm: enable autocomplete on 2FA code field (#7019) This should (fingers crossed) work in Safari, at least. --- src/screens/Login/LoginForm.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/screens/Login/LoginForm.tsx b/src/screens/Login/LoginForm.tsx index f3661ac92c..6a48b1bcc7 100644 --- a/src/screens/Login/LoginForm.tsx +++ b/src/screens/Login/LoginForm.tsx @@ -257,7 +257,7 @@ export const LoginForm = ({ autoCapitalize="none" autoFocus autoCorrect={false} - autoComplete="off" + autoComplete="one-time-code" returnKeyType="done" textContentType="username" blurOnSubmit={false} // prevents flickering due to onSubmitEditing going to next field