Skip to content

Commit 1224097

Browse files
committed
rm performance-transaction-name-only-search
1 parent 6812bc0 commit 1224097

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

src/sentry/conf/server.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1347,7 +1347,6 @@ def custom_parameter_sort(parameter: dict) -> tuple[str, int]:
13471347
"organizations:performance-metrics-backed-transaction-summary": "Enable metrics-backed transaction summary view",
13481348
"organizations:performance-new-trends": "Enable new trends",
13491349
"organizations:performance-new-widget-designs": "Enable updated landing page widget designs",
1350-
"organizations:performance-transaction-name-only-search-indexed": "Enable transaction name only search on indexed",
13511350
"organizations:profiling-global-suspect-functions": "Enable global suspect functions in profiling",
13521351
"organizations:user-feedback-ui": "Enable User Feedback v2 UI",
13531352
}

static/app/utils/performance/contexts/metricsEnhancedSetting.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,6 @@ function canUseMetricsDevUI(organization: Organization) {
5656

5757
export 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

7673
export function MEPSettingProvider({

0 commit comments

Comments
 (0)