[DevTools] Fix index (#34187)
I used the wrong indexer and tested with one entry.
Sebastian Markbåge committed
Aug 12, 2025 at 13:57 UTC
47fd2f5e1487fb48c561a6f8f30c534d8f8c7747
1 file changed
+1
-1
packages/react-devtools-shared/src/backend/fiber/renderer.js
+1
-1
@@ -3247,7 +3247,7 @@ export function attach(
3247
const debugInfo = thenable._debugInfo;
3248
if (debugInfo) {
3249
for (let j = 0; j < debugInfo.length; j++) {
3250
- const debugEntry = debugInfo[i];
3250
+ const debugEntry = debugInfo[j];
3251
if (debugEntry.awaited) {
3252
const asyncInfo: ReactAsyncInfo = (debugEntry: any);
3253
insertSuspendedBy(asyncInfo);