|
@@ -35,7 +35,6 @@ import type {
|
|
|
PageFilters,
|
|
|
Project,
|
|
|
} from 'sentry/types';
|
|
|
-import {hasDDMFeature} from 'sentry/utils/metrics/features';
|
|
|
import withOrganization from 'sentry/utils/withOrganization';
|
|
|
import withPageFilters from 'sentry/utils/withPageFilters';
|
|
|
import HeaderTabs from 'sentry/views/organizationStats/header';
|
|
@@ -263,9 +262,6 @@ export class OrganizationStats extends Component<OrganizationStatsProps> {
|
|
|
if (opt.value === DATA_CATEGORY_INFO.replay.plural) {
|
|
|
return organization.features.includes('session-replay');
|
|
|
}
|
|
|
- if (opt.value === DATA_CATEGORY_INFO.metric_bucket.plural) {
|
|
|
- return hasDDMFeature(organization);
|
|
|
- }
|
|
|
return true;
|
|
|
});
|
|
|
|
|
@@ -321,9 +317,6 @@ export class OrganizationStats extends Component<OrganizationStatsProps> {
|
|
|
if (opt.value === DATA_CATEGORY_INFO.replay.plural) {
|
|
|
return organization.features.includes('session-replay');
|
|
|
}
|
|
|
- if (opt.value === DATA_CATEGORY_INFO.metric_bucket.plural) {
|
|
|
- return hasDDMFeature(organization);
|
|
|
- }
|
|
|
return true;
|
|
|
});
|
|
|
|