Skip to content

Commit

Permalink
MM-56933 - password dont disable autocomplete
Browse files Browse the repository at this point in the history
  • Loading branch information
pvev committed Jun 21, 2024
1 parent f17d487 commit b7554ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/screens/login/form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,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}
Expand Down

0 comments on commit b7554ba

Please sign in to comment.