From d02e39b1f39424d1281d7c7bab1305f955904b3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pablo=20V=C3=A9lez?= Date: Mon, 15 Jul 2024 12:55:33 +0200 Subject: [PATCH] MM-56933 - password dont disable autocomplete (#8057) --- app/screens/login/form.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/screens/login/form.tsx b/app/screens/login/form.tsx index ac33fc61d..025d13a48 100644 --- a/app/screens/login/form.tsx +++ b/app/screens/login/form.tsx @@ -331,7 +331,7 @@ const LoginForm = ({config, extra, serverDisplayName, launchError, launchType, l disableFullscreenUI={true} enablesReturnKeyAutomatically={true} error={error} - keyboardType='default' + keyboardType={isPasswordVisible ? 'visible-password' : 'default'} label={intl.formatMessage({id: 'login.password', defaultMessage: 'Password'})} onChangeText={onPasswordChange} onSubmitEditing={onLogin}