validate phone number based on country
This commit is contained in:
parent
15e90356e7
commit
6f228a598e
1 changed files with 5 additions and 4 deletions
|
@ -42,10 +42,11 @@ export function Step2({
|
|||
const {isMobile} = useWebMediaQueries()
|
||||
|
||||
const onPressRequest = React.useCallback(() => {
|
||||
if (
|
||||
uiState.verificationPhone.length >= 9 &&
|
||||
parsePhoneNumber(uiState.verificationPhone, uiState.phoneCountry)
|
||||
) {
|
||||
const phoneNumber = parsePhoneNumber(
|
||||
uiState.verificationPhone,
|
||||
uiState.phoneCountry,
|
||||
);
|
||||
if (phoneNumber.isValid()) {
|
||||
requestVerificationCode({uiState, uiDispatch, _})
|
||||
} else {
|
||||
uiDispatch({
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue