MM-56933 - password dont disable autocomplete (#8057) (#8090)
Some checks failed
github-release / test (push) Has been cancelled
github-release / build-ios-unsigned (push) Has been cancelled
github-release / build-android-unsigned (push) Has been cancelled
github-release / release (push) Has been cancelled

(cherry picked from commit d02e39b1f3)

Co-authored-by: Pablo Vélez <pablovv2016@gmail.com>
This commit is contained in:
Mattermost Build 2024-07-15 16:40:23 +03:00 committed by GitHub
parent 333b594561
commit 6cc87dacc6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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}