Skip to content

Commit

Permalink
Merge pull request #3654 from Emurgo/fix/YOEXT-1321
Browse files Browse the repository at this point in the history
remove text from wallet list that is not in design
  • Loading branch information
vsubhuman committed Sep 27, 2024
2 parents 6074dbc + e296f01 commit 27c1a1c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,6 @@ const messages = defineMessages({
id: 'wallet.topbar.dialog.totalBalance',
defaultMessage: '!!!Total Balance',
},
cardano: {
id: 'wallet.topbar.dialog.cardano',
defaultMessage: '!!!Cardano, ADA',
},
});

export type WalletInfo = {|
Expand Down Expand Up @@ -242,11 +238,6 @@ export default class WalletListDialog extends Component<Props, State> {
sx={{ overflow: 'auto', overflowY: 'auto', height: '400px' }}
id="changeWalletDialog-walletList-box"
>
{cardanoWalletsIdx.length > 0 && (
<div className={styles.sectionHeader}>
<h1>{intl.formatMessage(messages.cardano)}</h1>
</div>
)}
<DragDropContext onDragEnd={result => this.onDragEnd('cardano', result)}>
<Droppable droppableId="cardano-list-droppable">
{provided => (
Expand Down
1 change: 0 additions & 1 deletion packages/yoroi-extension/app/i18n/locales/en-US.json
Original file line number Diff line number Diff line change
Expand Up @@ -896,7 +896,6 @@
"wallet.syncingOverlay.explanation": "Please wait while we process wallet data. This may take some time.",
"wallet.syncingOverlay.return": "Return to my wallets",
"wallet.syncingOverlay.title": "Wallet Syncing",
"wallet.topbar.dialog.cardano": "Cardano, ADA",
"wallet.topbar.dialog.tokenTypes": "Token types",
"wallet.topbar.dialog.totalBalance": "Total Balance",
"wallet.transaction.address.from": "From address",
Expand Down

0 comments on commit 27c1a1c

Please sign in to comment.