Skip to content

Commit 6cc87da

Browse files
MM-56933 - password dont disable autocomplete (#8057) (#8090)
(cherry picked from commit d02e39b) Co-authored-by: Pablo Vélez <[email protected]>
1 parent 333b594 commit 6cc87da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/screens/login/form.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ const LoginForm = ({config, extra, serverDisplayName, launchError, launchType, l
331331
disableFullscreenUI={true}
332332
enablesReturnKeyAutomatically={true}
333333
error={error}
334-
keyboardType='default'
334+
keyboardType={isPasswordVisible ? 'visible-password' : 'default'}
335335
label={intl.formatMessage({id: 'login.password', defaultMessage: 'Password'})}
336336
onChangeText={onPasswordChange}
337337
onSubmitEditing={onLogin}

0 commit comments

Comments
 (0)