diff --git a/src/transaction/DecodedLogSignature.tsx b/src/transaction/DecodedLogSignature.tsx index daceeee..42cfbe9 100644 --- a/src/transaction/DecodedLogSignature.tsx +++ b/src/transaction/DecodedLogSignature.tsx @@ -10,10 +10,10 @@ const DecodedLogSignature: React.FC = ({ event }) => { {event.name}( {event.inputs.map((input, i) => ( - <> + {i > 0 ? ", " : ""} {input.format("full")} - + ))} ){event.anonymous ? " anonymous" : ""}