Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/react-reconciler/src/ReactFiberPendingPriority.js
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ function findNextExpirationTimeToWorkOn(completedExpirationTime, root) {
let nextExpirationTimeToWorkOn =
earliestPendingTime !== NoWork ? earliestPendingTime : latestPingedTime;

// If there is no pending or pinted work, check if there's suspended work
// If there is no pending or pinged work, check if there's suspended work
// that's lower priority than what we just completed.
if (
nextExpirationTimeToWorkOn === NoWork &&
Expand Down