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 ba4bdb2 commit 00e2193Copy full SHA for 00e2193
packages/react-devtools-shared/src/backend/fiber/renderer.js
@@ -3917,7 +3917,10 @@ export function attach(
3917
}
3918
} else {
3919
// Children are unchanged.
3920
- if (fiberInstance !== null) {
+ if (
3921
+ fiberInstance !== null &&
3922
+ fiberInstance.kind !== FILTERED_FIBER_INSTANCE
3923
+ ) {
3924
// All the remaining children will be children of this same fiber so we can just reuse them.
3925
// I.e. we just restore them by undoing what we did above.
3926
fiberInstance.firstChild = remainingReconcilingChildren;
0 commit comments