Auth Phone Number: Allow phone numbers with 7 and more symbols (#29)

This commit is contained in:
durof 2021-06-13 12:58:21 -04:00 committed by GitHub
parent f1dba27213
commit e319dcb6da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -28,7 +28,7 @@ type DispatchProps = Pick<GlobalActions, (
'setAuthPhoneNumber' | 'setAuthRememberMe' | 'loadNearestCountry' | 'clearAuthError' | 'gotToAuthQrCode'
)>;
const MIN_NUMBER_LENGTH = 10;
const MIN_NUMBER_LENGTH = 7;
let isPreloadInitiated = false;