fix: remove unused ref

This commit is contained in:
Felix Zedén Yverås 2024-06-26 20:38:49 +02:00
parent caae8e7385
commit 075a98d444

View File

@ -89,7 +89,6 @@ function positionEditorElement(editor, rect) {
function FloatingLinkEditor({ editor }) {
const editorRef = useRef(null);
const inputRef = useRef(null);
const mouseDownRef = useRef(false);
const [linkUrl, setLinkUrl] = useState("");
const [isEditMode, setEditMode] = useState(false);
const [lastSelection, setLastSelection] = useState(null);
@ -134,9 +133,7 @@ function FloatingLinkEditor({ editor }) {
rect = domRange.getBoundingClientRect();
}
if (!mouseDownRef.current) {
positionEditorElement(editorElem, rect);
}
setLastSelection(selection);
} else if (!activeElement || activeElement.className !== "link-input") {
positionEditorElement(editorElem, null);