We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09068c3 commit 18f44c6Copy full SHA for 18f44c6
packages/react-devtools-shared/src/backend/fiber/renderer.js
@@ -3870,9 +3870,9 @@ export function attach(
3870
if (result.hooks !== null) {
3871
console.log('Hooks:', result.hooks);
3872
}
3873
- const nativeNodes = findHostInstancesForElementID(id);
3874
- if (nativeNodes !== null) {
3875
- console.log('Nodes:', nativeNodes);
+ const hostInstances = findHostInstancesForElementID(id);
+ if (hostInstances !== null) {
+ console.log('Nodes:', hostInstances);
3876
3877
if (window.chrome || /firefox/i.test(navigator.userAgent)) {
3878
console.log(
0 commit comments