Skip to content

Commit 8fbdb17

Browse files
authored
chore(functions): Remove most impacted transactions in function regre… (#75168)
…ssion issues This will not work in the continuous profiling format so we need to get rid of it.
1 parent 636b10d commit 8fbdb17

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

static/app/views/issueDetails/groupEventDetails/groupEventDetailsContent.tsx

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -347,6 +347,7 @@ function ProfilingDurationRegressionIssueDetailsContent({
347347
event,
348348
project,
349349
}: Required<GroupEventDetailsContentProps>) {
350+
const organization = useOrganization();
350351
return (
351352
<TransactionsDeltaProvider event={event} project={project}>
352353
<Fragment>
@@ -356,9 +357,11 @@ function ProfilingDurationRegressionIssueDetailsContent({
356357
<ErrorBoundary mini>
357358
<EventFunctionBreakpointChart event={event} />
358359
</ErrorBoundary>
359-
<ErrorBoundary mini>
360-
<EventAffectedTransactions event={event} group={group} project={project} />
361-
</ErrorBoundary>
360+
{!organization.features.includes('continuous-profiling-compat') && (
361+
<ErrorBoundary mini>
362+
<EventAffectedTransactions event={event} group={group} project={project} />
363+
</ErrorBoundary>
364+
)}
362365
<ErrorBoundary mini>
363366
<DataSection>
364367
<b>{t('Largest Changes in Call Stack Frequency')}</b>

0 commit comments

Comments
 (0)