Skip to content

Commit

Permalink
feat: 한글 캐럿 계속 업데이트 되는 문제 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
pipisebastian committed Nov 26, 2024
1 parent c65fde7 commit d06ddac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/src/features/editor/Editor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ export const Editor = ({
});

block.crdt.currentCaret = caretPosition;
updatePageData(pageId, editorCRDT.current.serialize());
// updatePageData(pageId, editorCRDT.current.serialize());
},
[editorCRDT, pageId, sendCharInsertOperation, updatePageData],
);
Expand Down Expand Up @@ -481,7 +481,7 @@ export const Editor = ({
clock: editorCRDT.current.clock,
linkedList: editorCRDT.current.LinkedList,
}));
updatePageData(pageId, editorCRDT.current.serialize());
// updatePageData(pageId, editorCRDT.current.serialize());
};

// 로딩 상태 체크
Expand Down

0 comments on commit d06ddac

Please sign in to comment.