From 771dcbb142d1ab7de30586eca9d81f54ff1a046d Mon Sep 17 00:00:00 2001 From: Emmanuel Date: Thu, 24 Feb 2022 16:23:02 -0300 Subject: [PATCH] fix error on line --- src/renderer/drawers/OperationDetails/index.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/renderer/drawers/OperationDetails/index.js b/src/renderer/drawers/OperationDetails/index.js index 01c4aa6e6e0..cf67982fb55 100644 --- a/src/renderer/drawers/OperationDetails/index.js +++ b/src/renderer/drawers/OperationDetails/index.js @@ -630,9 +630,8 @@ type OperationDetailsExtraProps = { }; const OperationDetailsExtra = ({ extra }: OperationDetailsExtraProps) => { - return Object.entries(extra).map(([key, value]) => ( + return Object.entries(extra).map(([key, value]) => { if( typeof value == "object" || typeof value == "function") return null; - return ( @@ -643,7 +642,6 @@ const OperationDetailsExtra = ({ extra }: OperationDetailsExtraProps) => { ); - }); };