diff --git a/app/components/Sidebar/Sidebar.tsx b/app/components/Sidebar/Sidebar.tsx index a950b8ed5..a51e7cb90 100644 --- a/app/components/Sidebar/Sidebar.tsx +++ b/app/components/Sidebar/Sidebar.tsx @@ -143,8 +143,11 @@ const Sidebar = React.forwardRef(function _Sidebar( React.useEffect(() => { if (isResizing) { + document.body.style.cursor = "col-resize"; document.addEventListener("mousemove", handleDrag); document.addEventListener("mouseup", handleStopDrag); + } else { + document.body.style.cursor = "initial"; } return () => {