diff --git a/src/pages/Editor.jsx b/src/pages/Editor.jsx index 622a856..74f0f6e 100644 --- a/src/pages/Editor.jsx +++ b/src/pages/Editor.jsx @@ -63,7 +63,7 @@ function WorkSpace() { const { tables, relationships, setTables, setRelationships } = useTables(); const { undoStack, redoStack, setUndoStack, setRedoStack } = useUndoRedo(); - const dragHandler = (e) => { + const handleResize = (e) => { if (!resize) return; const w = e.clientX; if (w > 340) setWidth(w); @@ -389,7 +389,8 @@ function WorkSpace() {