diff --git a/src/layouts/my-wallets/MyWalletsMobileItem.tsx b/src/layouts/my-wallets/MyWalletsMobileItem.tsx index 9d6015a..2f0dd0b 100644 --- a/src/layouts/my-wallets/MyWalletsMobileItem.tsx +++ b/src/layouts/my-wallets/MyWalletsMobileItem.tsx @@ -23,8 +23,13 @@ return <>

- - {item.label ?? item.address} + {/* Show the balance on the right */} + + + {/* Show the label if it exists, otherwise show the address */} + + {item.label ?? item.address} +

{/* Show the address if it has a label, otherwise this is unnecessary */} diff --git a/src/layouts/my-wallets/MyWalletsPage.tsx b/src/layouts/my-wallets/MyWalletsPage.tsx index 7177961..1933c3d 100644 --- a/src/layouts/my-wallets/MyWalletsPage.tsx +++ b/src/layouts/my-wallets/MyWalletsPage.tsx @@ -106,6 +106,11 @@ balance: 0, names: 0, firstSeen: new Date().toISOString() + }, + { + address: "kunlabeled", + balance: 0, + names: 0 } ] };