File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed
static/app/utils/performance/contexts Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -56,9 +56,6 @@ function canUseMetricsDevUI(organization: Organization) {
5656
5757export function canUseMetricsData ( organization : Organization ) {
5858 const isDevFlagOn = canUseMetricsDevUI ( organization ) ; // Forces metrics data on as well.
59- const isInternalViewOn = organization . features . includes (
60- 'performance-transaction-name-only-search'
61- ) ;
6259 const samplingFeatureFlag = organization . features . includes ( 'dynamic-sampling' ) ; // Exists on AM2 plans only.
6360 const isRollingOut =
6461 samplingFeatureFlag && organization . features . includes ( 'mep-rollout-flag' ) ;
@@ -70,7 +67,7 @@ export function canUseMetricsData(organization: Organization) {
7067 'dashboards-metrics-transition'
7168 ) ;
7269
73- return isDevFlagOn || isInternalViewOn || isRollingOut || isTransitioningPlan ;
70+ return isDevFlagOn || isRollingOut || isTransitioningPlan ;
7471}
7572
7673export function MEPSettingProvider ( {
You can’t perform that action at this time.
0 commit comments