We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 662f9b5 commit 0c7f03fCopy full SHA for 0c7f03f
packages/react-server/src/ReactFizzServer.js
@@ -1670,7 +1670,7 @@ function replaySuspenseBoundary(
1670
1671
function finishSuspenseListRow(request: Request, row: SuspenseListRow): void {
1672
// This row finished. Now we have to unblock all the next rows that were blocked on this.
1673
- // 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.
1674
let unblockedRow = row.next;
1675
while (unblockedRow !== null) {
1676
// Unblocking the boundaries will decrement the count of this row but we keep it above
0 commit comments