From e9ec0c019d5a7fbd4d228d471f4e1b413352bb59 Mon Sep 17 00:00:00 2001 From: Jonathan Rainville Date: Wed, 3 Oct 2018 16:15:07 -0400 Subject: [PATCH] fix same key --- embark-ui/src/components/ContractLogger.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/embark-ui/src/components/ContractLogger.js b/embark-ui/src/components/ContractLogger.js index 586d8f90..7bf47bf7 100644 --- a/embark-ui/src/components/ContractLogger.js +++ b/embark-ui/src/components/ContractLogger.js @@ -25,9 +25,9 @@ const ContractLogger = ({contractName, contractLogs}) => ( { - contractLogs.map((log) => { + contractLogs.map((log, index) => { return ( - + {`${log.name}.${log.functionName}(${log.paramString})`} {log.transactionHash} {log.gasUsed}