Skip to content

Commit

Permalink
🐛 Fix collection invalid reference
Browse files Browse the repository at this point in the history
  • Loading branch information
nwingt authored and williamchong committed Aug 14, 2024
1 parent a7e25df commit 7190fc5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/components/NFTCollection/ItemCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
>
<Identity
class="shrink-0"
:avatar-url="creatorAvatar"
:avatar-url="collectionCreatorAvatar"
:avatar-size="42"
:is-avatar-disabled="true"
:is-lazy-loaded="true"
Expand All @@ -116,7 +116,7 @@
'truncate',
displayNameStyle,
]"
>{{ creatorDisplayName }}</span
>{{ collectionCreatorDisplayName }}</span
>
</div>
</NuxtLink>
Expand Down
4 changes: 2 additions & 2 deletions src/pages/nft/collection/_collectionId/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@
/>
<NFTBookTippingDialog
:open="isTippingDialogOpen"
:creator-avatar="creatorAvatar"
:display-name="creatorDisplayNameFull"
:creator-avatar="collectionCreatorAvatar"
:display-name="collectionCreatorDisplayNameFull"
:currency="defaultCurrency"
:price="formattedNFTPriceInUSD"
:collection-id="collectionId"
Expand Down

0 comments on commit 7190fc5

Please sign in to comment.