File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
packages/react-reconciler/src Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -1601,14 +1601,13 @@ function retrySuspendedRoot(
16011601 if ( isPriorityLevelSuspended ( root , suspendedTime ) ) {
16021602 // Ping at the original level
16031603 retryTime = suspendedTime ;
1604- markPingedPriorityLevel ( root , retryTime ) ;
16051604 } else {
16061605 // Placeholder already timed out. Compute a new expiration time
16071606 const currentTime = requestCurrentTime ( ) ;
16081607 retryTime = computeExpirationForFiber ( currentTime , fiber ) ;
1609- markPendingPriorityLevel ( root , retryTime ) ;
16101608 }
16111609
1610+ markPingedPriorityLevel ( root , retryTime ) ;
16121611 scheduleWorkToRoot ( fiber , retryTime ) ;
16131612 const rootExpirationTime = root . expirationTime ;
16141613 if ( rootExpirationTime !== NoWork ) {
You can’t perform that action at this time.
0 commit comments