diff --git a/src/sentry/features/temporary.py b/src/sentry/features/temporary.py index f1f043ca119b..3ed9589f1cf7 100644 --- a/src/sentry/features/temporary.py +++ b/src/sentry/features/temporary.py @@ -205,8 +205,6 @@ def register_temporary_features(manager: FeatureManager) -> None: manager.add("organizations:dashboards-sync-all-registered-prebuilt-dashboards", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=False) # Enable sentry convention fields manager.add("organizations:performance-sentry-conventions-fields", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=True) - # Enable transaction name only search - manager.add("organizations:performance-transaction-name-only-search", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=True) # Enable Seer Suggestions for Web Vitals Module manager.add("organizations:performance-web-vitals-seer-suggestions", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=True) # Enable the warning banner to inform users of pending deprecation of the transactions dataset diff --git a/static/app/utils/performance/contexts/metricsEnhancedSetting.tsx b/static/app/utils/performance/contexts/metricsEnhancedSetting.tsx index a48cc9293243..7b624c6be79a 100644 --- a/static/app/utils/performance/contexts/metricsEnhancedSetting.tsx +++ b/static/app/utils/performance/contexts/metricsEnhancedSetting.tsx @@ -58,9 +58,6 @@ const METRIC_SETTING_PARAM = 'metricSetting'; export const METRIC_SEARCH_SETTING_PARAM = 'metricSearchSetting'; // TODO: Clean this up since we don't need multiple params in practice. export function canUseMetricsData(organization: Organization) { - const isInternalViewOn = organization.features.includes( - 'performance-transaction-name-only-search' - ); const isRollingOut = organization.features.includes('dynamic-sampling'); // Exists on AM2 plans only. // For plans transitioning from AM2 to AM3, we still want to show metrics @@ -70,7 +67,7 @@ export function canUseMetricsData(organization: Organization) { 'dashboards-metrics-transition' ); - return isInternalViewOn || isRollingOut || isTransitioningPlan; + return isRollingOut || isTransitioningPlan; } export function MEPSettingProvider({