Situation You are having a React Component using Hooks. In that component, you use useEffect to perform some asynchronous actions and update the component state. const [count, increase] = useState(0); useEffect(() => { //count will increase after 3 secs setTimeOut(() => increase(count++), 3000); }); Problem When you run the app and there is a warning... Continue Reading →