diff options
author | Ivan Chen <ivan@thetaggid.com> | 2020-11-03 17:19:53 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-03 17:19:53 -0500 |
commit | 4d3e0f8f1a2e644af947fb6ada98f7c6a1e0c1f8 (patch) | |
tree | e2f64eb27eacfe34f6281f7fa190807f7840adc9 /src | |
parent | 7e8dadc8ded690d7f368582b09668c44dbcbe1da (diff) |
added one (#101)
Diffstat (limited to 'src')
-rw-r--r-- | src/screens/onboarding/Verification.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/screens/onboarding/Verification.tsx b/src/screens/onboarding/Verification.tsx index 228cb778..ad012c92 100644 --- a/src/screens/onboarding/Verification.tsx +++ b/src/screens/onboarding/Verification.tsx @@ -59,7 +59,7 @@ const Verification: React.FC<VerificationProps> = ({route, navigation}) => { let verifyOtpResponse = await fetch(VERIFY_OTP_ENDPOINT, { method: 'POST', body: JSON.stringify({ - phone_number: phone, + phone_number: '+1' + phone, otp: value, }), }); |