Resolving the issue of slider, When returned to home after navigating to some PDP pages, the speed of the slider’s rotation is increasing.

When clicked on the any product/item form the slider or returned to Home page after navigating to some PDP Pages, the speed of the slider’s rotation in increasing, It cause because for setInterval( ); function to prevent this issue, Clear the Interval function whenever it returned to home page, and start the the interval again newly,

clearInterval(sliderInterval);
sliderInterval = setInterval(() => {
    this.showNextFeed();
}, 3000);

clearinterval(); function clear the interval and the setInterval again start the interval again freshly

Leave a comment

Your email address will not be published. Required fields are marked *