Any idea why in react-beautiful-dnd I conterminously get "Droppable: unsupported nested scroll container detected." ?
react-beautiful-dndDroppable: unsupported nested scroll container detected.
A Droppable can only have one scroll parent (which can be itself)Nested scroll containers are currently not supported.
This error message is indicating that a Droppable component in a user interface has detected an unsupported nested scroll container. A Droppable component is used for creating a drop target in a drag-and-drop interface, and it can only have one scroll parent. The error message is saying that there are multiple nested scroll containers, which is currently not supported.
I made the same mistake, To fix this check your overflow CSS properties and avoid nested scroll conditions