Skip to content
Prev Previous commit
Update packages/react-server/src/ReactFizzServer.js
Typo

Co-authored-by: Sebastian "Sebbie" Silbermann <[email protected]>
  • Loading branch information
sebmarkbage and eps1lon authored May 19, 2025
commit 0c7f03f02a51b20b23ee6a89a105f6b989905044
2 changes: 1 addition & 1 deletion packages/react-server/src/ReactFizzServer.js
Original file line number Diff line number Diff line change
Expand Up @@ -1670,7 +1670,7 @@ function replaySuspenseBoundary(

function finishSuspenseListRow(request: Request, row: SuspenseListRow): void {
// This row finished. Now we have to unblock all the next rows that were blocked on this.
// We do this in a loop to avoid stash overflow for very long lists that get unblocked.
// We do this in a loop to avoid stack overflow for very long lists that get unblocked.
let unblockedRow = row.next;
while (unblockedRow !== null) {
// Unblocking the boundaries will decrement the count of this row but we keep it above
Expand Down
Loading