@@ -16,10 +16,7 @@ import {
1616 getProfileUsesMultipleStackTypes ,
1717} from 'firefox-profiler/selectors/profile' ;
1818import { selectedThreadSelectors } from 'firefox-profiler/selectors/per-thread' ;
19- import {
20- getSelectedThreadsKey ,
21- getInvertCallstack ,
22- } from '../../selectors/url-state' ;
19+ import { getSelectedThreadsKey } from '../../selectors/url-state' ;
2320import { ContextMenuTrigger } from 'firefox-profiler/components/shared/ContextMenuTrigger' ;
2421import {
2522 changeSelectedCallNode ,
@@ -83,7 +80,6 @@ type StateProps = {
8380 readonly scrollToSelectionGeneration : number ;
8481 readonly categories : CategoryList ;
8582 readonly interval : Milliseconds ;
86- readonly isInverted : boolean ;
8783 readonly callTreeSummaryStrategy : CallTreeSummaryStrategy ;
8884 readonly ctssSamples : SamplesLikeTable ;
8985 readonly ctssSampleCategoriesAndSubcategories : SampleCategoriesAndSubcategories ;
@@ -336,7 +332,6 @@ class FlameGraphImpl
336332 callTreeSummaryStrategy,
337333 categories,
338334 interval,
339- isInverted,
340335 innerWindowIDToPageMap,
341336 weightType,
342337 ctssSamples,
@@ -403,7 +398,6 @@ class FlameGraphImpl
403398 onDoubleClick : this . _onCallNodeEnterOrDoubleClick ,
404399 shouldDisplayTooltips : this . _shouldDisplayTooltips ,
405400 interval,
406- isInverted,
407401 ctssSamples,
408402 ctssSampleCategoriesAndSubcategories,
409403 tracedTiming : tracedTimingNonInverted ,
@@ -450,7 +444,6 @@ export const FlameGraph = explicitConnectWithForwardRef<
450444 selectedThreadSelectors . getRightClickedCallNodeIndex ( state ) ,
451445 scrollToSelectionGeneration : getScrollToSelectionGeneration ( state ) ,
452446 interval : getProfileInterval ( state ) ,
453- isInverted : getInvertCallstack ( state ) ,
454447 callTreeSummaryStrategy :
455448 selectedThreadSelectors . getCallTreeSummaryStrategy ( state ) ,
456449 innerWindowIDToPageMap : getInnerWindowIDToPageMap ( state ) ,
0 commit comments