Skip to content

Commit

Permalink
🎨 Update collectable logic
Browse files Browse the repository at this point in the history
Co-authored-by: William Chong <[email protected]>
  • Loading branch information
nwingt and williamchong authored Nov 21, 2022
1 parent f9d8cf9 commit bb38f38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mixins/nft.js
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ export default {
return this.purchaseInfo.price;
},
nftIsCollectable() {
return this.NFTPrice !== -1;
return this.NFTPrice && this.NFTPrice !== -1;
},
formattedNFTPriceInLIKE() {
return this.NFTPrice ? formatNumberWithLIKE(this.NFTPrice) : '-';
Expand Down

0 comments on commit bb38f38

Please sign in to comment.