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) => { ); - }); };