Skip to content

Commit

Permalink
Add back accidentally deleted break to prevent fallthrough
Browse files Browse the repository at this point in the history
  • Loading branch information
acdlite authored and jetoneza committed Jan 23, 2019
1 parent b0e0ede commit 01bbfe1
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/react-reconciler/src/ReactFiberCompleteWork.js
Original file line number Diff line number Diff line change
Expand Up @@ -684,6 +684,7 @@ function completeWork(
break;
}
case ForwardRef:
break;
case SuspenseComponent: {
const nextState = workInProgress.memoizedState;
const prevState = current !== null ? current.memoizedState : null;
Expand Down

0 comments on commit 01bbfe1

Please sign in to comment.