Skip to content

Commit

Permalink
💩 Support wnft status in claim page
Browse files Browse the repository at this point in the history
  • Loading branch information
williamchong committed Dec 5, 2024
1 parent 0502a44 commit dc2646f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/pages/nft/claim/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -1027,7 +1027,11 @@ export default {
this.status === 'pendingNFT'
) {
this.navigateToState(NFT_CLAIM_STATE.CLAIMED);
} else if (!free && this.status !== 'paid') {
} else if (
!free &&
this.status !== 'paid' && // nft book
this.status !== 'pendingClaim' // wnft
) {
this.alertPromptError(
this.$t('nft_free_claim_error_message', {
error: `Payment status is ${this.status}`,
Expand Down

0 comments on commit dc2646f

Please sign in to comment.