소스 검색

remove unnecessary comments

kosei-n 2 년 전
부모
커밋
fffa59ef73
1개의 변경된 파일0개의 추가작업 그리고 2개의 파일을 삭제
  1. 0 2
      packages/editor/src/components/CodeMirrorEditor/CodeMirrorEditor.tsx

+ 0 - 2
packages/editor/src/components/CodeMirrorEditor/CodeMirrorEditor.tsx

@@ -61,7 +61,6 @@ export const CodeMirrorEditor = (props: Props): JSX.Element => {
 
   }, [codeMirrorEditor, indentSize]);
 
-  // ここのPaste処理を改善!
   useEffect(() => {
     const handlePaste = (event: ClipboardEvent) => {
       event.preventDefault();
@@ -92,7 +91,6 @@ export const CodeMirrorEditor = (props: Props): JSX.Element => {
           codeMirrorEditor?.replaceText(adjusted);
         }
       }
-      // console.log('kohsei');
     };
 
     const extension = EditorView.domEventHandlers({