Open
Description
Describe
I think in RTL, from right to left, it's 123, not 312
CodeSandbox
https://codesandbox.io/s/react-slick-playground-lk4i7?file=/index.js
Line 183 in 80eb208
It may be fix in this place
--preCloneSlides.concat(slides, postCloneSlides).reverse();
++preCloneSlides.concat(slides.reverse(), postCloneSlides.reverse());
And preCloneSlides
is not the last node, but the first node.
I hope this will be fix.