### Website or app None ### Repro steps ``` const A = () => { return <div>A</div>; }; const B = () => { return ( <> <div>B</div> <C/> <D/> </> ); }; const C = () => { return <div>C</div>; }; const D = () => { return <div>D</div>; }; function App() { return ( <> <A /> <B /> </> ); } export default App; ``` 1. Open dev tools, Component tab 2. Double click on B: nothing happens  With version 6.0.1, double clicking on B filters the tree by showing only B and its direct children  Tested on Chrome and Firefox with version 6.1.1 ### How often does this bug happen? Every time ### DevTools package (automated) _No response_ ### DevTools version (automated) _No response_ ### Error message (automated) _No response_ ### Error call stack (automated) ```text ``` ### Error component stack (automated) ```text ``` ### GitHub query string (automated) ```text ```