Skip to content

Commit

Permalink
fix(reconciler): return null waitForCommitToBeReady
Browse files Browse the repository at this point in the history
  • Loading branch information
CodyJasonBennett committed Apr 22, 2024
1 parent c147c8e commit dbed854
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/fiber/src/core/reconciler.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,9 @@ export const reconciler = Reconciler<
},
startSuspendingCommit() {},
suspendInstance() {},
waitForCommitToBeReady() {},
waitForCommitToBeReady() {
return null
},
NotPendingTransition: null,
setCurrentUpdatePriority(newPriority: number) {
currentUpdatePriority = newPriority
Expand Down

0 comments on commit dbed854

Please sign in to comment.