diff options
Diffstat (limited to 'src/constants/regex.ts')
-rw-r--r-- | src/constants/regex.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/constants/regex.ts b/src/constants/regex.ts index ac38a3b7..01fd9a2d 100644 --- a/src/constants/regex.ts +++ b/src/constants/regex.ts @@ -51,8 +51,8 @@ export const genderRegex: RegExp = /^$|^[A-Za-z\- ]{2,20}$/; /** * The phone regex has the following constraints - * - must be 10 digits + * - must be 10 digits * - accepts 012-345-6789 - * + * */ export const phoneRegex: RegExp = /([0-9]{10})/; |