Craig Carlyle
Craig Carlyle
I'm having the same problem in my project and I was happy to find this issue and see that I wasn't the only one 😅 I'll try to dig into...
@Eduard-Hasa Unfortunately while that worked _most_ of the time, it would result in the occasional item getting rendered in a completely random positon. What _did_ work for me was disabling...
@darren10201 This is my on `SortableItem` component: ```tsx const { attributes, isDragging, listeners, setNodeRef, transform, transition } = useSortable({ id, data: { item, type, }, }) const style = useMemo(()...
For anybody that's still experiencing this issue: I was able to solve it by defining the sequence in an array. ```jsx // Does NOT work as expected TOGGLE_LEFT_MENU: { name:...