Skip to content

Commit 806a4e8

Browse files
committed
Before we have loaded we haven't had a chance to spot known boundaries so ignore that state
1 parent 894f103 commit 806a4e8

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
@@ -6084,7 +6084,8 @@ export function attach(
60846084
let unknownSuspenders = UNKNOWN_SUSPENDERS_NONE;
60856085
if (
60866086
fiberInstance.suspenseNode !== null &&
6087-
fiberInstance.suspenseNode.hasUnknownSuspenders
6087+
fiberInstance.suspenseNode.hasUnknownSuspenders &&
6088+
!isTimedOutSuspense
60886089
) {
60896090
// Something unknown threw to suspended this boundary. Let's figure out why that might be.
60906091
if (renderer.bundleType === 0) {

0 commit comments

Comments
 (0)