Skip to content

Commit

Permalink
[react-core] Do not null fiber.sibling in detachFiber (#16820)
Browse files Browse the repository at this point in the history
  • Loading branch information
trueadm committed Sep 18, 2019
1 parent d862f0e commit 18cb590
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion packages/react-reconciler/src/ReactFiberCommitWork.js
Expand Up @@ -904,7 +904,6 @@ function detachFiber(current: Fiber) {
current.memoizedState = null;
current.updateQueue = null;
current.dependencies = null;
current.sibling = null;
current.alternate = null;
current.firstEffect = null;
current.lastEffect = null;
Expand Down

0 comments on commit 18cb590

Please sign in to comment.