fmt, remove corp routing, lint

This commit is contained in:
Olivier Gagnon
2021-09-06 15:06:08 -04:00
parent 91434b7972
commit 506122f5b8
53 changed files with 1300 additions and 1610 deletions
-7
View File
@@ -4,7 +4,6 @@
*/
import * as React from "react";
import { WorkerScriptAccordion } from "./WorkerScriptAccordion";
import { Accordion } from "../React/Accordion";
import { ServerAccordionContent } from "./ServerAccordionContent";
@@ -33,12 +32,6 @@ export function ServerAccordion(props: IProps): React.ReactElement {
};
const headerTxt = `${paddedName} ${createProgressBarText(barOptions)}`;
const scripts = props.workerScripts.map((ws) => {
return (
<WorkerScriptAccordion key={`${ws.name}_${ws.args}`} workerScript={ws} />
);
});
return (
<Accordion
headerContent={<pre>{headerTxt}</pre>}