diff options
author | Ivan Chen <ivan@tagg.id> | 2021-03-30 14:11:35 -0400 |
---|---|---|
committer | Ivan Chen <ivan@tagg.id> | 2021-03-30 14:11:35 -0400 |
commit | 52bec30cbae29f165eec99179af52a59b6ef4db8 (patch) | |
tree | 2fb1964a0b5d754bc136a0fd9a60f70bebe60a3d /src/screens/onboarding/InvitationCodeVerification.tsx | |
parent | a168fc7635c4d40365d095a476348e09ebbb1db9 (diff) |
passing username properly
Diffstat (limited to 'src/screens/onboarding/InvitationCodeVerification.tsx')
-rw-r--r-- | src/screens/onboarding/InvitationCodeVerification.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/screens/onboarding/InvitationCodeVerification.tsx b/src/screens/onboarding/InvitationCodeVerification.tsx index 7cd4b3bf..adaf6fe5 100644 --- a/src/screens/onboarding/InvitationCodeVerification.tsx +++ b/src/screens/onboarding/InvitationCodeVerification.tsx @@ -23,7 +23,6 @@ import { ERROR_INVALID_INVITATION_CODE, ERROR_INVLAID_CODE, ERROR_VERIFICATION_FAILED_SHORT, - SUCCESS_INVITATION_CODE, } from '../../constants/strings'; import {OnboardingStackParams} from '../../routes'; import {BackgroundGradientType} from '../../types'; @@ -83,6 +82,7 @@ const InvitationCodeVerification: React.FC<InvitationCodeVerificationProps> = ({ Alert.alert(ERROR_INVALID_INVITATION_CODE); } } catch (error) { + console.log(error); Alert.alert( ERROR_VERIFICATION_FAILED_SHORT, ERROR_DOUBLE_CHECK_CONNECTION, |