Julien Rioux
Julien Rioux
Hi oquirozm, I’ll try to take a look at it this as soon as possible. No I’m gradually removing styled-components from the library because there is too many issues with...
I had the same issue using a custom dnd context. Basically, the fix form me was to round scrolling distance before applying it. The issue is that Safari is less...
I don't know well the package but it seems like making the following change could work. Our issue was around the autoScroller implementation: ``` const scrollLeft = Math.round(scrollSpeed.current.x * scrollDirection.current.x);...
Basically, the issue is that you need to round the multiplication of the scrolling speed and the scrolling distance. You can also check if the user is on Safari and...