Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
marc2332 committed Sep 12, 2023
1 parent 10808e4 commit 6972225
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@
const { standard, version, type, uri, description, issuerName, collectionName, attributes, soonaverseAttributes } =
nft?.parsedMetadata || {}
const issuerAddress = getBech32AddressFromAddressTypes(issuer)
const collectionId = getHexAddressFromAddressTypes(issuer)
const issuerAddress = issuer ? getBech32AddressFromAddressTypes(issuer) : undefined
const collectionId = issuer ? getHexAddressFromAddressTypes(issuer) : undefined
let detailsList: {
[key in string]: {
Expand Down

0 comments on commit 6972225

Please sign in to comment.