From 1e5cf1abbc0624bd56add42d1a598a3aabeb730a Mon Sep 17 00:00:00 2001 From: amy-corson-ibigroup <115499534+amy-corson-ibigroup@users.noreply.github.com> Date: Wed, 25 Oct 2023 17:46:15 -0500 Subject: [PATCH] fix: prevent phone defaulting to verified --- lib/actions/user.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/actions/user.js b/lib/actions/user.js index eb934817b..864dbfab1 100644 --- a/lib/actions/user.js +++ b/lib/actions/user.js @@ -75,6 +75,7 @@ function createNewUser(auth0User) { auth0UserId: auth0User.sub, email: auth0User.email, hasConsentedToTerms: false, // User must agree to terms. + isPhoneNumberVerified: false, // User must input phone number notificationChannel: 'email', phoneNumber: '', savedLocations: [],