1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-26 12:29:06 +01:00
metamask-extension/ui/helpers/utils/nfts.js

4 lines
125 B
JavaScript
Raw Normal View History

2023-01-25 15:08:35 +01:00
export const getCollectibleImageAlt = ({ name, tokenId, description }) => {
return description ?? `${name} ${tokenId}`;
};