-
-
Notifications
You must be signed in to change notification settings - Fork 32.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CircularProgress timer leak #2354
Comments
Don't we have the same issue with the |
This still seems to be an issue in 0.14.4 |
@wenzowski What makes you say so? |
@oliviertassinari Was my own fault for conditionally rendering the component instead of passing |
See https://github.com/callemall/material-ui/blob/master/src/circular-progress.jsx#L75
Once
_scalePath()
is called bycomponentDidMount
it will never terminate, even after the progress component is unmounted.A simple fix might be to move the
setTimeout
call to the end of the function.The text was updated successfully, but these errors were encountered: