1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-26 04:20:53 +01:00
metamask-extension/ui/helpers/utils/nfts.js
Nidhi Kumari 3be1fc6d0c
converted collectibles files to nfts (#17658)
* converted collectibles files to nfts

* updated relative import for scss

* updated scss for pages
2023-02-08 20:04:56 +05:30

4 lines
125 B
JavaScript

export const getCollectibleImageAlt = ({ name, tokenId, description }) => {
return description ?? `${name} ${tokenId}`;
};