From 35afdf4e9b67204fc00e8af84eb977ccff2d5a25 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Thu, 24 Oct 2024 04:44:51 +0530 Subject: [PATCH] feat: remove input tab --- src/components/molecules/RunContent.tsx | 36 ------------------------- 1 file changed, 36 deletions(-) diff --git a/src/components/molecules/RunContent.tsx b/src/components/molecules/RunContent.tsx index 1c8c2d10..8aa5aa74 100644 --- a/src/components/molecules/RunContent.tsx +++ b/src/components/molecules/RunContent.tsx @@ -82,42 +82,6 @@ export const RunContent = ({ row, currentLog, interpretationInProgress, logEndRe Stop : null} - {/* - - - Interpreter settings - - { - Object.keys(row.interpreterSettings).map((setting, index) => { - if (setting === 'params') { - return ( -
- - - Recording parameters - - { - Object.keys(row.interpreterSettings.params).map((param, index) => { - return ( - - {/*@ts-ignore*/} - {param}: {row.interpreterSettings.params[param].toString()} - - ) - }) - } -
- ) - } - return ( - - {/*@ts-ignore*/} - {setting}: {row.interpreterSettings[setting].toString()} - - ) - }) - } -
*/} {!row || !row.serializableOutput || !row.binaryOutput || (Object.keys(row.serializableOutput).length === 0 && Object.keys(row.binaryOutput).length === 0)