Skip to content

Commit

Permalink
Fix:The tokenid displayed in the active tab is abnormal. (#915)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexsupa597 authored Mar 9, 2023
1 parent 9a13743 commit 1d36b4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/NFTActivityList/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ const ActivityList: React.FC<
{token_id ? null : (
<td>
<NextLink href={`/nft-item/${item.token_contract_address_hash}/${item.token_id}`}>
<a>{(+item.token_id).toLocaleString('en')}</a>
<a>{item.token_id}</a>
</NextLink>
</td>
)}
Expand Down

0 comments on commit 1d36b4d

Please sign in to comment.