Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 18f44c6

Browse files
committedJul 29, 2024·
Fiber renderer
1 parent 09068c3 commit 18f44c6

File tree

1 file changed

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

1 file changed

+3
-3
lines changed
 

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -3870,9 +3870,9 @@ export function attach(
38703870
if (result.hooks !== null) {
38713871
console.log('Hooks:', result.hooks);
38723872
}
3873-
const nativeNodes = findHostInstancesForElementID(id);
3874-
if (nativeNodes !== null) {
3875-
console.log('Nodes:', nativeNodes);
3873+
const hostInstances = findHostInstancesForElementID(id);
3874+
if (hostInstances !== null) {
3875+
console.log('Nodes:', hostInstances);
38763876
}
38773877
if (window.chrome || /firefox/i.test(navigator.userAgent)) {
38783878
console.log(

0 commit comments

Comments
 (0)
Please sign in to comment.