Skip to content

Commit

Permalink
[#68085] fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
Trzcin committed Nov 15, 2024
1 parent c46a961 commit 6987888
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hooks/useText.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export const useText = ({ initialText, transforms, customRoles, preview, backsla
const [text, setText] = useState(initialText);
const [readyToRender, setReadyToRender] = useState(false);
const [syncText, setSyncText] = useState(false);
const [onSync, setOnSync] = useState({ action: (text) => { } });
const [onSync, setOnSync] = useState({ action: (text) => {} });
const lineMap = useRef(new Map());
/**
* Split the document into chunks and re-render only the chunks which were changed
Expand Down

0 comments on commit 6987888

Please sign in to comment.