diff --git a/src/components/Shared/Transactions.tsx b/src/components/Shared/Transactions.tsx index 5ced9531..6a7dbe3a 100644 --- a/src/components/Shared/Transactions.tsx +++ b/src/components/Shared/Transactions.tsx @@ -186,18 +186,20 @@ export const Transactions: React.FC = ({ column={column} /> ), - cell: ({ row }) => { - return row.original.fees_paid ? ( -

- {calculatePrettyBalance( - row.original.fees_paid, - row.original.gas_metadata?.contract_decimals, - )} + cell: ({ row }) => ( +

+ {calculatePrettyBalance( + row.original.fees_paid ?? 0, + row.original.gas_metadata?.contract_decimals, + true, + 4, + )}{" "} + {row.original.gas_metadata?.contract_ticker_symbol} +

+ {row.original.pretty_gas_quote}

- ) : ( -

-

- ); - }, +
+ ), }, ];