There is bug which I can't solve there is a bug in keen-slider react js, when the no more item to slide but dots is appearing
there is code sandbox code https://codesandbox.io/s/quiet-fog-ekwqd?file=/src/App.js
Since there is no apparent solution provided by the library, a workaround is set less dots than maximum.
In your case, put "-2" when getting the length of slides:
{slider && (
<div className="dots">
{[...Array(slider.details().size - 2).keys()].map((idx) => {
return (
<button
key={idx}
onClick={() => {
slider.moveToSlideRelative(idx)
}}
className={"dot" + (currentSlide === idx ? " active" : "")}
/>
)
})}
</div>
)}
for anyone else facing the same issuse using keen slider I believe you are using BREAKPOINTS and that is the issue because in the example of using dots there is no break points but to take into account calc of breakpoint use the below
then