diff --git a/src/components/src/ep-explorer/EPExplorer.tsx b/src/components/src/ep-explorer/EPExplorer.tsx index 0d75725..9f776e6 100644 --- a/src/components/src/ep-explorer/EPExplorer.tsx +++ b/src/components/src/ep-explorer/EPExplorer.tsx @@ -68,7 +68,6 @@ function EPExplorer(props: { adjustEps({ type: "load EPS", payload: e }); } function flashMessage(msg: string) { - console.log(msg); alert(msg); // for some crazy reason using this alert functionality breaks the flow! // setAlertMsg(msg); diff --git a/src/lib/src/phrase-building/compile.ts b/src/lib/src/phrase-building/compile.ts index a008b8f..baef606 100644 --- a/src/lib/src/phrase-building/compile.ts +++ b/src/lib/src/phrase-building/compile.ts @@ -268,9 +268,7 @@ function getEngAPs(blocks: T.Block[][]): string { } function getEngComplement(blocks: T.Block[][]): string | undefined { - console.log("getting comp"); const comp = getComplementFromBlocks(blocks); - console.log({ blocks, comp }); if (!comp) return undefined; if (comp.selection.type === "unselected") { return "____";