We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29835da commit 178188bCopy full SHA for 178188b
content/docs/implementation-notes.md
@@ -771,7 +771,7 @@ We collect DOM operations on children in a list so we can execute them in batch:
771
// Finally, unmount any children that don't exist:
772
for (var j = nextChildren.length; j < prevChildren.length; j++) {
773
var prevChild = prevRenderedChildren[j];
774
- var node = prevChild.node;
+ var node = prevChild.getHostNode();
775
prevChild.unmount();
776
777
// Record that we need to remove the node
0 commit comments