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