1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-22 18:00:18 +01:00
metamask-extension/ui/helpers/utils/collectibles.js
2023-01-25 08:08:35 -06:00

4 lines
125 B
JavaScript

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