Skip to content

Commit

Permalink
refactor: 사용하지 않는 position 변수 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
pipisebastian committed Dec 5, 2024
1 parent 643fcf9 commit 25f2211
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/features/editor/hooks/useEditorOperation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ export const useEditorOperation = ({
[pageId, editorCRDT],
);

const handleRemoteCursor = useCallback((position: any) => {}, []);
const handleRemoteCursor = useCallback(() => {}, []);

const addNewBlock = () => {
if (!editorCRDT) return;
Expand Down

0 comments on commit 25f2211

Please sign in to comment.