How many times does a React component need to update state before the maximum update depth is exceeded and the error is thrown?
I understand it's meant to prevent infinite loops or unnecessary state updates. I've run into an instance in which I need to chunk my calls to state to avoid this error and, when determining chunk size, it would be helpful to know how many state updates are allowed, before the error is thrown.