I set the following configuration for the react-slick:
infinite: true,
speed: 500,
slidesToShow: 6,
slidesToScroll: 5,
swipeToSlide: true,
autoplay: true,
arrows: false
dots: false
Everytime the slick item slides, the whole page hangs. For example, aside from this slick, I have a table below. When I try to scroll my table while the slick slides, it hangs, it waits for the slick to finish sliding before i can scroll my table. Same goes when opening a modal window. If the slick is sliding when I open a modal window, it hangs until slick finishes the slide before showing my modal window. How to fix this issue of hanging?
Seems like even just using slick itself causes the page to hang while the slide slides.