Skip to content

Commit

Permalink
fix tooltip position
Browse files Browse the repository at this point in the history
  • Loading branch information
radumojic committed Apr 15, 2024
1 parent 1727e0a commit ba0bf1b
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export const TransactionRow = ({
</td>
<td className='sender text-truncate'>
{directionOut ? (
<>
<div className='d-flex align-items-center'>
<ScAddressIcon initiator={transaction.sender} />
<AccountName
address={transaction.sender}
Expand All @@ -107,7 +107,7 @@ export const TransactionRow = ({
{showLockedAccounts && (
<LockedTokenAddressIcon address={transaction.sender} />
)}
</>
</div>
) : (
<AccountLink
address={transaction.sender}
Expand All @@ -132,7 +132,7 @@ export const TransactionRow = ({

<td className='receiver text-truncate'>
{directionIn ? (
<>
<div className='d-flex align-items-center'>
<ScAddressIcon initiator={receiver} />
<AccountName
address={receiver}
Expand All @@ -142,7 +142,7 @@ export const TransactionRow = ({
{showLockedAccounts && (
<LockedTokenAddressIcon address={receiver} />
)}
</>
</div>
) : (
<AccountLink
address={receiver}
Expand Down

0 comments on commit ba0bf1b

Please sign in to comment.