We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 338ba68 commit ce0fdc7Copy full SHA for ce0fdc7
packages/react-devtools-core/src/backend.js
@@ -131,21 +131,6 @@ export function connectToDevTools(options: ?ConnectOptions) {
131
}
132
},
133
});
134
- bridge.addListener(
135
- 'inspectElement',
136
- ({id, rendererID}: {id: number, rendererID: number, ...}) => {
137
- const renderer = agent.rendererInterfaces[rendererID];
138
- if (renderer != null) {
139
- // Send event for RN to highlight.
140
- const nodes: ?Array<HTMLElement> = renderer.findNativeNodesForFiberID(
141
- id,
142
- );
143
- if (nodes != null && nodes[0] != null) {
144
- agent.emit('showNativeHighlight', nodes[0]);
145
- }
146
147
- },
148
149
// $FlowFixMe[incompatible-use] found when upgrading Flow
150
bridge.addListener(
151
'updateComponentFilters',
0 commit comments