Skip to content

Commit

Permalink
udpate: remove consoles
Browse files Browse the repository at this point in the history
  • Loading branch information
VsevolodX committed Sep 8, 2023
1 parent 83490d9 commit b5fa3c1
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/other/codemirror/CodeMirror.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,6 @@ class CodeMirror extends React.Component<CodeMirrorProps, CodeMirrorState> {
}

computeExtensions() {
console.log("computeExtensions");
const { completions, language } = this.props;
const completionExtension = autocompletion({ override: [completions] });
const languageExtensions = this.getLanguageExtensions(language);
Expand All @@ -112,7 +111,6 @@ class CodeMirror extends React.Component<CodeMirrorProps, CodeMirrorState> {
render() {
const { content = "", options = {}, theme } = this.props;
const { extensions } = this.state;
console.log(extensions);

return (
<CodeMirrorBase
Expand Down

0 comments on commit b5fa3c1

Please sign in to comment.