Skip to content

Commit 27fbed5

Browse files
committed
Missing keyPath
This would've shown up for FormState eventually.
1 parent 852d978 commit 27fbed5

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

packages/react-server/src/ReactFizzServer.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1380,6 +1380,7 @@ function replaySuspenseBoundary(
13801380
// we're writing to. If something suspends, it'll spawn new suspended task with that context.
13811381
task.blockedBoundary = resumedBoundary;
13821382
task.hoistableState = resumedBoundary.contentState;
1383+
task.keyPath = keyPath;
13831384
task.replay = {nodes: childNodes, slots: childSlots, pendingTasks: 1};
13841385

13851386
try {
@@ -5097,6 +5098,7 @@ export function abort(request: Request, reason: mixed): void {
50975098
if (request.status === OPEN) {
50985099
request.status = ABORTING;
50995100
}
5101+
51005102
try {
51015103
const abortableTasks = request.abortableTasks;
51025104
if (abortableTasks.size > 0) {

0 commit comments

Comments
 (0)