Skip to content

Commit

Permalink
behnaz/MARK-1066/phone-8d (binary-com#7185)
Browse files Browse the repository at this point in the history
* chore: phone 8 d

* chore: add the phone length
  • Loading branch information
behnaz-deriv authored and hasan-deriv committed Mar 12, 2024
1 parent 79cb188 commit 639a6b8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ const phoneValidation = (input: string) => {
if (!input) {
return localize('_t_Mobile number is required_t_')
} else if (
input.length < 8 ||
input.length > 13 ||
input.length < 9 ||
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 639a6b8

Please sign in to comment.