Skip to content

Commit 3d977e9

Browse files
authored
feat: Remove adjacent tracing feature flag (#103891)
We will now show the adjacent traces for all. For now we will keep the feature flag in place in case something should break that we can easily enable it again (it is very unlikely that this will happen though). Follow up to: #102472
1 parent 64ca9a6 commit 3d977e9

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

static/app/views/performance/newTraceDetails/traceLinksNavigation/traceLinksNavigation.tsx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import {ExternalLink} from '@sentry/scraps/link';
33
import {Tooltip} from '@sentry/scraps/tooltip';
44

55
import {tct} from 'sentry/locale';
6-
import useOrganization from 'sentry/utils/useOrganization';
76
import type {TraceRootEventQueryResults} from 'sentry/views/performance/newTraceDetails/traceApi/useTraceRootEvent';
87
import {isTraceItemDetailsResponse} from 'sentry/views/performance/newTraceDetails/traceApi/utils';
98
import {TraceLinkNavigationButton} from 'sentry/views/performance/newTraceDetails/traceLinksNavigation/traceLinkNavigationButton';
@@ -15,9 +14,7 @@ export function TraceLinksNavigation({
1514
rootEventResults: TraceRootEventQueryResults;
1615
source: string;
1716
}) {
18-
const organization = useOrganization();
1917
const showLinkedTraces =
20-
organization?.features.includes('trace-view-linked-traces') &&
2118
// Don't show the linked traces buttons when the waterfall is embedded in the replay
2219
// detail page, as it already contains all traces of the replay session.
2320
source !== 'replay';

0 commit comments

Comments
 (0)