This commit is contained in:
Víctor Losada Hernández
2026-09-23 23:29:17 +02:00
parent ae57a7a14e
commit 1be4a8727f
4 changed files with 33 additions and 33 deletions
+1 -1
View File
@@ -138,7 +138,7 @@ const Editor = forwardRef(
useEffect(()=>{ if(liveScroll) brewJump(currentEditorViewPageNum, false); }, [currentEditorViewPageNum, liveScroll]);
useEffect(()=>{ if(liveScroll) brewJump(currentEditorCursorPageNum, false); }, [currentEditorCursorPageNum, liveScroll]);
const handleFormatCode = () => {
const handleFormatCode = ()=>{
codeEditor.current?.formatCode();
};