Skip to content

Commit

Permalink
πŸ”€ Merge #1998 into deploy/rinkeby
Browse files Browse the repository at this point in the history
  • Loading branch information
williamchong committed Dec 26, 2024
2 parents aced6f8 + b224df2 commit 56edbe6
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/pages/nft/claim/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -854,7 +854,10 @@ export default {
}
this.status = status;
this.giftInfo = giftInfo;
if (query.type === 'nft_book') this.clearBookProductShoppingCart();
if (query.type === 'nft_book') {
await this.restoreAuthSession();
this.clearBookProductShoppingCart();
}
} else if (this.paymentId) {
if (this.isNFTBook) {
try {
Expand Down Expand Up @@ -1055,7 +1058,7 @@ export default {
}
},
methods: {
...mapActions(['clearBookProductShoppingCart']),
...mapActions(['restoreAuthSession', 'clearBookProductShoppingCart']),
isValidAddress,
parseNFTMetadataURL,
getIscnData(classId) {
Expand Down

0 comments on commit 56edbe6

Please sign in to comment.