Skip to content

Commit 93fcb28

Browse files
committed
Don't resolve contract name on token dashboard title
When showing token smart contract addresses, usually we are replacing it with the name of the token. That is all good in transactions, but we should not do this on the token dashboard page, when we explicitly want to see the address.
1 parent d050356 commit 93fcb28

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

.changelog/1797.trivial.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Don't resolve contract name on token dashboard title

src/app/pages/TokenDashboardPage/TokenTitleCard.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ export const TokenTitleCard: FC<{ scope: SearchScope; address: string; searchTer
3333
<AccountLink
3434
scope={token}
3535
address={token.eth_contract_addr || token.contract_addr}
36+
showOnlyAddress
3637
alwaysTrim
3738
/>
3839
<CopyToClipboard value={token.eth_contract_addr || token.contract_addr} />

0 commit comments

Comments
 (0)