From b5fa3c132522a747c6f5c868b2c85028d0e17cae Mon Sep 17 00:00:00 2001 From: VsevolodX <79542055+VsevolodX@users.noreply.github.com> Date: Fri, 8 Sep 2023 16:43:27 -0700 Subject: [PATCH] udpate: remove consoles --- src/other/codemirror/CodeMirror.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/other/codemirror/CodeMirror.tsx b/src/other/codemirror/CodeMirror.tsx index 84565311..48e07ef7 100644 --- a/src/other/codemirror/CodeMirror.tsx +++ b/src/other/codemirror/CodeMirror.tsx @@ -102,7 +102,6 @@ class CodeMirror extends React.Component { } computeExtensions() { - console.log("computeExtensions"); const { completions, language } = this.props; const completionExtension = autocompletion({ override: [completions] }); const languageExtensions = this.getLanguageExtensions(language); @@ -112,7 +111,6 @@ class CodeMirror extends React.Component { render() { const { content = "", options = {}, theme } = this.props; const { extensions } = this.state; - console.log(extensions); return (