File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
static/app/views/issueDetails/groupEventDetails Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff 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 >
You can’t perform that action at this time.
0 commit comments