Browse Source

chore: rm console log

Timothy J. Baek 11 months ago
parent
commit
f2bd3fdf19
1 changed files with 0 additions and 1 deletions
  1. 0 1
      src/lib/components/common/CodeEditor.svelte

+ 0 - 1
src/lib/components/common/CodeEditor.svelte

@@ -25,7 +25,6 @@
 		placeholder('Enter your code here...'),
 		placeholder('Enter your code here...'),
 		EditorView.updateListener.of((e) => {
 		EditorView.updateListener.of((e) => {
 			if (e.docChanged) {
 			if (e.docChanged) {
-				console.log(e);
 				value = e.state.doc.toString();
 				value = e.state.doc.toString();
 			}
 			}
 		}),
 		}),