In the documentation of `draggable`, under the [conditional dragging section](https://atlassian.design/components/pragmatic-drag-and-drop/core-package/adapters/element/about#conditional-dragging-candrag), there's an error with usage of `useEffect` : `useEffect` receives a callback as first argument, so the following code (from the documentation) is incorrect: ```tsx useEffect({ // when disabled, don't make the element draggable // ... }, []); ``` This is correct: ```tsx - useEffect({ + useEffect(() => { // when disabled, don't make the element draggable // ... }, []); ```