We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Thanks for your blog and code sharing, Didact is awesome!
I got an issue here when I tried to delete several siblings in the same time.
didact/didact.js
Lines 124 to 129 in a127ff4
In this line, after one fiber gets deleted, its sibling will commitWork next, which has been already registered in deletions.
commitWork
deletions
As a result, some fiber will be deleted more than once (after its sibling and in deletions.forEach), which will cause an error.
deletions.forEach
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Thanks for your blog and code sharing, Didact is awesome!
I got an issue here when I tried to delete several siblings in the same time.
didact/didact.js
Lines 124 to 129 in a127ff4
In this line, after one fiber gets deleted, its sibling will
commitWork
next, which has been already registered indeletions
.As a result, some fiber will be deleted more than once (after its sibling and in
deletions.forEach
), which will cause an error.The text was updated successfully, but these errors were encountered: