From 97c46e383d2eef7b3673bb2b2c16560b2ed3214c Mon Sep 17 00:00:00 2001 From: Willian Mitsuda Date: Sat, 18 Sep 2021 15:46:29 -0300 Subject: [PATCH] Fix missing key prop --- src/transaction/DecodedLogSignature.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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" : ""}