diff --git a/src/components/NFTBook/ItemCard.vue b/src/components/NFTBook/ItemCard.vue index 50642c20b0..c9f53dfc04 100644 --- a/src/components/NFTBook/ItemCard.vue +++ b/src/components/NFTBook/ItemCard.vue @@ -230,7 +230,7 @@ export default { types.push(this.getContentUrlType(url)); }); types.push('nft'); - return types.filter(type => type !== 'unknown'); + return [...new Set(types.filter(type => type !== 'unknown'))]; }, componentTag() { if (this.isDetailsPreset) return 'div';