Explorar o código

chore: rm console log

Timothy J. Baek hai 1 ano
pai
achega
f2bd3fdf19
Modificáronse 1 ficheiros con 0 adicións e 1 borrados
  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...'),
 		EditorView.updateListener.of((e) => {
 			if (e.docChanged) {
-				console.log(e);
 				value = e.state.doc.toString();
 			}
 		}),