Skip to content

Commit 5c62446

Browse files
committed
Before we have loaded we haven't had a chance to spot known boundaries so ignore that state
1 parent 243b27b commit 5c62446

File tree

1 file changed

+2
-1
lines changed
  • packages/react-devtools-shared/src/backend/fiber

1 file changed

+2
-1
lines changed

packages/react-devtools-shared/src/backend/fiber/renderer.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6149,7 +6149,8 @@ export function attach(
61496149
let unknownSuspenders = UNKNOWN_SUSPENDERS_NONE;
61506150
if (
61516151
fiberInstance.suspenseNode !== null &&
6152-
fiberInstance.suspenseNode.hasUnknownSuspenders
6152+
fiberInstance.suspenseNode.hasUnknownSuspenders &&
6153+
!isTimedOutSuspense
61536154
) {
61546155
// Something unknown threw to suspended this boundary. Let's figure out why that might be.
61556156
if (renderer.bundleType === 0) {

0 commit comments

Comments
 (0)