aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorIvan Chen <ivan@thetaggid.com>2020-11-03 17:19:53 -0500
committerGitHub <noreply@github.com>2020-11-03 17:19:53 -0500
commit4d3e0f8f1a2e644af947fb6ada98f7c6a1e0c1f8 (patch)
treee2f64eb27eacfe34f6281f7fa190807f7840adc9 /src
parent7e8dadc8ded690d7f368582b09668c44dbcbe1da (diff)
added one (#101)
Diffstat (limited to 'src')
-rw-r--r--src/screens/onboarding/Verification.tsx2
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,
}),
});