Skip to content

Commit

Permalink
fix reversal of kyc status
Browse files Browse the repository at this point in the history
  • Loading branch information
spencer-xp committed Feb 10, 2024
1 parent b1593b2 commit dc62a40
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export function RedEnvelope2024() {
}

const keys = data?.totalLicenses || 0;
const approved = !kycStatus?.isKycApproved;
const approved = kycStatus?.isKycApproved;
const userEligible = keys > 0 && approved && showInput;
const eligibleTokens = 80 + (8 * keys);

Expand Down

0 comments on commit dc62a40

Please sign in to comment.