Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions src/sentry/features/temporary.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -70,7 +67,7 @@ export function canUseMetricsData(organization: Organization) {
'dashboards-metrics-transition'
);

return isInternalViewOn || isRollingOut || isTransitioningPlan;
return isRollingOut || isTransitioningPlan;
}

export function MEPSettingProvider({
Expand Down
Loading