Skip to content

Commit

Permalink
fix stx tx icon sizing (#294)
Browse files Browse the repository at this point in the history
* push

* push
  • Loading branch information
terencehh committed May 27, 2024
1 parent 5e97cd4 commit a51c1f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/components/transactions/txTransfers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@ export default function TxTransfers(props: TxTransfersProps) {

const renderTransactionIcon = (transfer: any) => {
if (selectedAccount?.stxAddress === transfer.recipient) {
return <img src={ReceiveIcon} alt="received" />;
return <img width={24} height={24} src={ReceiveIcon} alt="received" />;
}
return <img src={SendIcon} alt="sent" />;
return <img width={24} height={24} src={SendIcon} alt="sent" />;
};

const getTokenTransferTitle = (transfer): string =>
Expand Down

0 comments on commit a51c1f6

Please sign in to comment.