Skip to content
This repository has been archived by the owner on Sep 26, 2024. It is now read-only.

Commit

Permalink
chore: add the phone length
Browse files Browse the repository at this point in the history
  • Loading branch information
behnaz-deriv committed Mar 1, 2024
1 parent f4c26d5 commit ae4d9bc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ const phoneValidation = (input: string) => {
return localize('_t_Mobile number is required_t_')
} else if (
input.length < 9 ||
input.length > 13 ||
input.length > 14 ||
!affiliate_validation_regex.non_empty_string(input)
) {
return localize('_t_You should enter 8-13 numbers._t_')
Expand Down

0 comments on commit ae4d9bc

Please sign in to comment.