Skip to content

Commit 9f906f9

Browse files
kyle-ssgclaude
andauthored
chore: Remove environment_metrics feature flag (#6685)
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
1 parent b10b2bc commit 9f906f9

1 file changed

Lines changed: 1 addition & 6 deletions

File tree

frontend/web/components/pages/features/components/FeatureMetricsSection.tsx

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import React, { FC } from 'react'
22
import EnvironmentMetricsList from 'components/metrics/EnvironmentMetricsList'
3-
import Utils from 'common/utils/utils'
43

54
type FeatureMetricsSectionProps = {
65
environmentId?: string
@@ -11,11 +10,7 @@ export const FeatureMetricsSection: FC<FeatureMetricsSectionProps> = ({
1110
environmentId,
1211
projectId,
1312
}) => {
14-
const environmentMetricsEnabled = Utils.getFlagsmithHasFeature(
15-
'environment_metrics',
16-
)
17-
18-
if (!environmentMetricsEnabled || !environmentId) {
13+
if (!environmentId) {
1914
return null
2015
}
2116

0 commit comments

Comments
 (0)