diff --git a/packages/suite/src/components/suite/CoinBalance.tsx b/packages/suite/src/components/suite/CoinBalance.tsx index be9c4c000420..02f1b0985dc1 100644 --- a/packages/suite/src/components/suite/CoinBalance.tsx +++ b/packages/suite/src/components/suite/CoinBalance.tsx @@ -4,13 +4,15 @@ import { FormattedCryptoAmount } from 'src/components/suite'; interface CoinBalanceProps { value: string; symbol: Account['symbol'] | (string & {}); + justifyContent?: 'flex-end' | 'flex-start'; } -export const CoinBalance = ({ value, symbol }: CoinBalanceProps) => ( +export const CoinBalance = ({ value, symbol, justifyContent }: CoinBalanceProps) => ( ); diff --git a/packages/suite/src/components/wallet/WalletLayout/AccountsMenu/AccountItem.tsx b/packages/suite/src/components/wallet/WalletLayout/AccountsMenu/AccountItem.tsx index 9366e2dae47d..6b11bb6ac8dc 100644 --- a/packages/suite/src/components/wallet/WalletLayout/AccountsMenu/AccountItem.tsx +++ b/packages/suite/src/components/wallet/WalletLayout/AccountsMenu/AccountItem.tsx @@ -199,7 +199,11 @@ export const AccountItem = forwardRef( )} {isBalanceShown && type !== 'tokens' && ( - + )} {!isBalanceShown && (