Open jinojacob15 opened 3 years ago
const handleAfterChange = event => { const { index } = event.item; setActiveSlideIndex(itemCount); };
const customSettings = { autoplay: false, dots: true, callbacks: true, onChange: event => handleAfterChange(event) };
Above code produces error !
I've been battling the same problem and using React.memo to wrap the OwlCarousel component seems to have fixed it.
const handleAfterChange = event => { const { index } = event.item; setActiveSlideIndex(itemCount); };
const customSettings = { autoplay: false, dots: true, callbacks: true, onChange: event => handleAfterChange(event) };
Above code produces error !