From 226da646081f06609837e8f64816f2a975279e6f Mon Sep 17 00:00:00 2001 From: adueck Date: Tue, 27 Jun 2023 17:00:59 +0400 Subject: [PATCH] cleanup --- src/components/src/ep-explorer/EPExplorer.tsx | 1 - src/lib/src/phrase-building/compile.ts | 2 -- 2 files changed, 3 deletions(-) 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 "____";