Skip to content

Commit beeb2a2

Browse files
committed
fix: switch nft id and nft name by places
1 parent 7864416 commit beeb2a2

File tree

1 file changed

+2
-2
lines changed
  • src/components/ViewNFTCollectionModal

1 file changed

+2
-2
lines changed

src/components/ViewNFTCollectionModal/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -212,12 +212,12 @@ export const ViewNFTCollectionModal = () => {
212212
<NFTItem
213213
key={item.id}
214214
imgPath={item.image}
215-
label={item.name}
215+
label={item.id}
216216
onClick={() => onNFTClick(item)}
217217
isActive={isActive}
218218
isActionRow={true}
219219
actionItems={items}
220-
description={`ID: ${item.id}`}
220+
description={`Name: ${item.name}`}
221221
/>
222222
);
223223
})}

0 commit comments

Comments
 (0)