andybenedict

Results 4 comments of andybenedict

I have another situation that results in this rendering error occurring. It is happening because of [this check](https://github.com/nkbt/react-debounce-input/blob/master/src/Component.js#L59). In short, the component only re-renders if a value is different than...

I think this is the most stripped down component that results in my exact problem. ```js import React, { FunctionComponent} from 'react'; import { DebounceInput } from 'react-debounce-input'; interface InputElement...

Sure thing, this concisely demonstrates the problem: https://codepen.io/AndyBenedict/pen/zYWGKwe?editors=0010 I've given it a min of 10 and a max of 100... so enter any number between 10 and 100 and it...

The callback is being executed. The output of the debounce, and its internal state, is changing, I've added a console log to the codepen to confirm. Prior to v3.2.1, [the...