Skip to content

Commit

Permalink
fix(ui-ux): display tokens tab (#384)
Browse files Browse the repository at this point in the history
* fix(ui-ux): display tokens tab

* fix(ui-ux): display tokens tab
  • Loading branch information
pierregee authored May 2, 2024
1 parent 40cd27a commit 16d1f10
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion apps/web/src/pages/address/_components/ListTabs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ const getTabsByAddressType = (addressType: AddressType) => {
{ title: AddressContractTabsTitle.Transactions },
{ title: AddressContractTabsTitle.Logs },
{ title: AddressContractTabsTitle.Contract },
{ title: AddressContractTabsTitle.Tokens },
];
case AddressType.Contract:
return [
Expand All @@ -31,7 +32,10 @@ const getTabsByAddressType = (addressType: AddressType) => {
];
case AddressType.Wallet:
default:
return [{ title: AddressContractTabsTitle.Transactions }];
return [
{ title: AddressContractTabsTitle.Transactions },
{ title: AddressContractTabsTitle.Tokens },
];
}
};

Expand Down

0 comments on commit 16d1f10

Please sign in to comment.