I have such function (I'm using debounce
from lodash
):
const sliderDebounce = debounce(() => {
postSliderVal({ email_instances }) //POST
}, 1000);
I guess it should send 1 request after 1 second but it send a lot of requests, how I can send 1 request when I will change the slider value?