Fix missing key attribute

This commit is contained in:
Willian Mitsuda 2021-09-20 18:12:07 -03:00
parent 28b4bfed7f
commit 18275f86a2
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ const DecodedParamRow: React.FC<DecodedParamRowProps> = ({
</tr>
{paramType.baseType === "tuple" &&
r.map((e: any, idx: number) => (
<DecodedParamRow
<DecodedParamRow key={idx}
prefix={paramType.name + "."}
r={e}
paramType={paramType.components[idx]}