diff --git a/src/lib/components/common/CodeEditor.svelte b/src/lib/components/common/CodeEditor.svelte index 4b8c09be0..4eef9f59e 100644 --- a/src/lib/components/common/CodeEditor.svelte +++ b/src/lib/components/common/CodeEditor.svelte @@ -25,7 +25,6 @@ placeholder('Enter your code here...'), EditorView.updateListener.of((e) => { if (e.docChanged) { - console.log(e); value = e.state.doc.toString(); } }),