Skip to content

Commit

Permalink
minor tooltip fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kartiksaini3 committed Jan 24, 2025
1 parent d99c199 commit 47467e3
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions src/Components/BalanceDetails/BalanceDetails.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -499,25 +499,25 @@ function BalanceDetails({ mt0 }) {
/>
)}
</span>
<Tooltip
placement="bottom"
title={
allAccountsBalance[currentAccount?.evmAddress][
currentNetwork?.toLowerCase()
].totalBalance
}>
{showBalance ? (
{showBalance ? (
<Tooltip
placement="bottom"
title={
allAccountsBalance[currentAccount?.evmAddress][
currentNetwork?.toLowerCase()
].totalBalance
}>
<span className="totalBal">
{formatBalance(
allAccountsBalance[currentAccount?.evmAddress][
currentNetwork?.toLowerCase()
].totalBalance || 0
)}
</span>
) : (
<span className="totalBal">{hiddenBalance}</span>
)}
</Tooltip>
</Tooltip>
) : (
<span className="totalBal">{hiddenBalance}</span>
)}
<span>
<img src={SmallLogo} />
{/* {CURRENCY} */}
Expand Down

0 comments on commit 47467e3

Please sign in to comment.