Skip to content

Commit

Permalink
chore(flamegraph): Remove unused expand toggle on aggregate flamegraph (
Browse files Browse the repository at this point in the history
#80191)

This toggle doesn't do anything right now. Comment it out as it may be
used to render a list of examples later.
  • Loading branch information
Zylphrex authored Nov 4, 2024
1 parent e133075 commit 0fd4b33
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion static/app/views/profiling/landingAggregateFlamegraph.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import {AggregateFlamegraph} from 'sentry/components/profiling/flamegraph/aggreg
import {AggregateFlamegraphTreeTable} from 'sentry/components/profiling/flamegraph/aggregateFlamegraphTreeTable';
import {FlamegraphSearch} from 'sentry/components/profiling/flamegraph/flamegraphToolbar/flamegraphSearch';
import {SegmentedControl} from 'sentry/components/segmentedControl';
import {IconPanel} from 'sentry/icons';
import {t} from 'sentry/locale';
import {space} from 'sentry/styles/space';
import type {DeepPartial} from 'sentry/types/utils';
Expand Down Expand Up @@ -118,13 +117,15 @@ function AggregateFlamegraphToolbar(props: AggregateFlamegraphToolbarProps) {
value={props.frameFilter}
options={frameSelectOptions}
/>
{/*
<Button
size="xs"
onClick={props.onHideRegressionsClick}
title={t('Expand or collapse the view')}
>
<IconPanel size="xs" direction="right" />
</Button>
*/}
</AggregateFlamegraphToolbarContainer>
);
}
Expand Down

0 comments on commit 0fd4b33

Please sign in to comment.