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

Commit

Permalink
behnaz/MARK-1066/phone-8d (#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 Mar 6, 2024
1 parent e2aa26f commit 7460bcc
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 7460bcc

Please sign in to comment.