diff options
| author | Ivan Chen <ivan@tagg.id> | 2021-03-19 18:10:41 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-19 18:10:41 -0400 |
| commit | ec7aa3cacd5c613e0d6ff589274ac58ce62bd6a8 (patch) | |
| tree | 18d6061d24b34df136cfb7d7a4e3f61580b82b7d /src/screens/onboarding/Login.tsx | |
| parent | f8a2634372eb7bda871a11cd14aca758782a1d2e (diff) | |
| parent | 8013dd29f447990f95cc4ad9557238fc825bcc54 (diff) | |
Merge pull request #309 from IvanIFChen/tma707-login-after-invitation-code
[TMA-707] Login directly after entering correct invitation code
Diffstat (limited to 'src/screens/onboarding/Login.tsx')
| -rw-r--r-- | src/screens/onboarding/Login.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/screens/onboarding/Login.tsx b/src/screens/onboarding/Login.tsx index cfa39dbd..6d9d3a97 100644 --- a/src/screens/onboarding/Login.tsx +++ b/src/screens/onboarding/Login.tsx @@ -170,6 +170,7 @@ const Login: React.FC<LoginProps> = ({navigation}: LoginProps) => { } else if (statusCode === 200 && !data.isOnboarded) { navigation.navigate('InvitationCodeVerification', { userId: data.UserID, + username: username, }); setTimeout(() => { Alert.alert(ERROR_NOT_ONBOARDED); |
