claim first reward on phone verification

Didn't test this, but it should function the same way as the credit card portion on line 303
This commit is contained in:
Thomas Zarebczan 2018-06-16 16:16:19 -04:00 committed by GitHub
parent 96cdf2029f
commit 9a485a971a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -168,6 +168,7 @@ export function doUserPhoneVerify(verificationCode) {
data: { phone_number: phoneNumber },
});
dispatch(doUserFetch());
dispatch(doClaimRewardType(rewards.TYPE_NEW_USER));
})
.catch(error => dispatch(doUserPhoneVerifyFailure(error)));
};