remove comments

This commit is contained in:
Olivier Gagnon 2021-10-23 14:40:57 -04:00
parent a0039d9667
commit 0afb2e5f5d

@ -217,12 +217,6 @@ export function Root(props: IProps): React.ReactElement {
function beautify(): void {
if (editorRef.current === null) return;
editorRef.current.getAction("editor.action.formatDocument").run();
// const pretty = beautifyCode(code, {
// indent_with_tabs: !options.insertSpaces,
// indent_size: 4,
// brace_style: "preserve-inline",
// });
// editorRef.current.setValue(pretty);
}
function onFilenameChange(event: React.ChangeEvent<HTMLInputElement>): void {