Skip to content

Commit 2522dd0

Browse files
committed
Remove logs from VSCode editor
1 parent d2757d6 commit 2522dd0

File tree

1 file changed

+1
-3
lines changed
  • packages/app/src/app/components/CodeEditor/VSCode

1 file changed

+1
-3
lines changed

packages/app/src/app/components/CodeEditor/VSCode/index.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ class MonacoEditor extends React.Component<Props, State> implements Editor {
238238
};
239239

240240
provideDocumentFormattingEdits = (model, options, token) =>
241-
console.log('prettify') || prettify(
241+
prettify(
242242
model.uri.fsPath,
243243
() => model.getValue(),
244244
this.getPrettierConfig(),
@@ -281,8 +281,6 @@ class MonacoEditor extends React.Component<Props, State> implements Editor {
281281
monaco.languages.registerDocumentFormattingEditProvider('markdown', this);
282282
monaco.languages.registerDocumentFormattingEditProvider('json', this);
283283

284-
console.log('hey');
285-
286284
// eslint-disable-next-line no-underscore-dangle
287285
window.CSEditor = {
288286
editor: this.editor,

0 commit comments

Comments
 (0)