From e319dcb6daaf19049233319cb0250ba47f300a3d Mon Sep 17 00:00:00 2001 From: durof <50372801+durof@users.noreply.github.com> Date: Sun, 13 Jun 2021 12:58:21 -0400 Subject: [PATCH] Auth Phone Number: Allow phone numbers with 7 and more symbols (#29) --- src/components/auth/AuthPhoneNumber.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/auth/AuthPhoneNumber.tsx b/src/components/auth/AuthPhoneNumber.tsx index f77f46ed..5f09f5d8 100644 --- a/src/components/auth/AuthPhoneNumber.tsx +++ b/src/components/auth/AuthPhoneNumber.tsx @@ -28,7 +28,7 @@ type DispatchProps = Pick; -const MIN_NUMBER_LENGTH = 10; +const MIN_NUMBER_LENGTH = 7; let isPreloadInitiated = false;