diff --git a/ui/pages/send/send-content/send-asset-row/send-asset-row.component.js b/ui/pages/send/send-content/send-asset-row/send-asset-row.component.js index 0adf4930a..f92876f4e 100644 --- a/ui/pages/send/send-content/send-asset-row/send-asset-row.component.js +++ b/ui/pages/send/send-content/send-asset-row/send-asset-row.component.js @@ -46,6 +46,12 @@ export default class SendAssetRow extends Component { }), }), ), + collections: PropTypes.arrayOf( + PropTypes.shape({ + address: PropTypes.string.isRequired, + name: PropTypes.string, + }), + ), }; static contextTypes = { @@ -261,7 +267,9 @@ export default class SendAssetRow extends Component { renderCollectible(collectible, insideDropdown = false) { const { address, name, image, tokenId } = collectible; const { t } = this.context; - + const collectibleCollection = this.props.collections.find( + (collection) => collection.address === address, + ); return (