diff --git a/src/renderer/components/Experiment/Settings.tsx b/src/renderer/components/Experiment/Settings.tsx index 5c5fccb943fbb2e5380a2e96ad7038d1b8658ce0..bbd661a7b0f379f390da1e0b320dc53f2af605db 100644 --- a/src/renderer/components/Experiment/Settings.tsx +++ b/src/renderer/components/Experiment/Settings.tsx @@ -15,8 +15,6 @@ export default function ExperimentSettings({ }) { const [showJSON, setShowJSON] = useState(false); - let plugins = experimentInfo?.config?.plugins; - if (!experimentInfo) { return null; } @@ -41,26 +39,13 @@ export default function ExperimentSettings({ {JSON.stringify(experimentInfo, null, 2)} </pre> <Divider sx={{ mt: 2, mb: 2 }} /> - <Typography level="title-lg" mb={2}> - Scripts - </Typography> - {plugins && - plugins.map((plugin) => ( - <> - <Chip color="success" size="lg"> - {plugin} - </Chip> - - </> - ))} - <Divider sx={{ mt: 2, mb: 2 }} /> <Button color="danger" variant="outlined" onClick={() => { if ( confirm( - 'Are you sure you want to delete this project? If you click on "OK" There is no way to recover it.' + 'Are you sure you want to delete this project? If you click on "OK" There is no way to recover it.', ) ) { fetch(chatAPI.DELETE_EXPERIMENT_URL(experimentInfo?.id));