From 5891b3b77ab98fe70297a91f1d1a2ea8a160337f Mon Sep 17 00:00:00 2001 From: ashu8912 Date: Wed, 29 Jan 2020 16:12:08 +0530 Subject: [PATCH] removed console.log --- client/modules/IDE/components/Editor.jsx | 1 - 1 file changed, 1 deletion(-) diff --git a/client/modules/IDE/components/Editor.jsx b/client/modules/IDE/components/Editor.jsx index ac353ab7..95f9ba9b 100644 --- a/client/modules/IDE/components/Editor.jsx +++ b/client/modules/IDE/components/Editor.jsx @@ -273,7 +273,6 @@ class Editor extends React.Component { const currentPosition = this._cm.doc.getCursor(); if (mode === 'javascript') { this._cm.doc.setValue(beautifyJS(this._cm.doc.getValue(), beautifyOptions)); - console.log('beautifying'); } else if (mode === 'css') { this._cm.doc.setValue(beautifyCSS(this._cm.doc.getValue(), beautifyOptions)); } else if (mode === 'htmlmixed') {