<!-- Please provide a clear and concise description of what the bug is. Include screenshots if needed. Please test using the latest version of the relevant React packages to make sure your issue has not already been fixed. --> React version: ## Steps To Reproduce 1. open react developer tools <!-- Your bug will get fixed much faster if we can run your code and it doesn't have dependencies other than React. Issues without reproduction steps or code examples may be immediately closed as not actionable. --> Link to code example: <!-- Please provide a CodeSandbox (https://codesandbox.io/s/new), a link to a repository on GitHub, or provide a minimal code example that reproduces the problem. You may provide a screenshot of the application if you think it is relevant to your bug report. Here are some tips for providing a minimal example: https://stackoverflow.com/help/mcve. --> ## The current behavior STOP ## The expected behavior no stop sorry I cant open codesandbox page this the Minimum recurrence code ```js export default function App() { const [count, set_count] = useState(0) const ref_count = useRef() ref_count.current = () => set_count(count + 1) useEffect(() => { var id = setInterval(() => { ref_count.current() }, 100) return () => clearInterval(id) }, []) return count } ```