We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e37b030 commit b03bacaCopy full SHA for b03baca
packages/core/src/services/defaults/DefaultInputValidator.ts
@@ -38,7 +38,7 @@ const validateEmail = (output: any): ValidationResult => {
38
39
const validatePhone = async (output: any): Promise<ValidationResult> => {
40
// Wait for 2 seconds to demo
41
- await new Promise(resolve => setTimeout(resolve, 2000));
+ // await new Promise(resolve => setTimeout(resolve, 2000));
42
43
const phoneRegex = /^[0-9]{8,}$/;
44
const valid = typeof output === 'string' && phoneRegex.test(output);
0 commit comments