From 6689a6db59ee89c079c02b9555b0a62607c2c571 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 6c8fe5f4ae..dee5a82453 100644 --- a/src/renderer/drawers/OperationDetails/index.js +++ b/src/renderer/drawers/OperationDetails/index.js @@ -641,9 +641,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 ( @@ -654,7 +653,6 @@ const OperationDetailsExtra = ({ extra }: OperationDetailsExtraProps) => { ); - }); };