diff --git a/packages/react/src/components/CodeMirror6.jsx b/packages/react/src/components/CodeMirror6.jsx index 833f6de1..51573fee 100644 --- a/packages/react/src/components/CodeMirror6.jsx +++ b/packages/react/src/components/CodeMirror6.jsx @@ -82,7 +82,6 @@ const highlightField = StateField.define({ }); const getDocLabel = (doc) => doc.name || doc.longname; -console.log(jsdoc.docs.sort((a, b) => a.name.localeCompare(b.name))); const jsdocCompletions = jsdoc.docs .filter( (doc) => @@ -133,7 +132,6 @@ const jsdocCompletions = jsdoc.docs }, // Additional info to show when the completion is selected type: 'function', // https://codemirror.net/docs/ref/#autocomplete.Completion.type })); -console.log(jsdocCompletions); export const strudelAutocomplete = (context /* : CompletionContext */) => { let word = context.matchBefore(/\w*/);