diff --git a/frontend/src/scenes/experiments/ExperimentView/components.tsx b/frontend/src/scenes/experiments/ExperimentView/components.tsx
index c24376ac7e67c..df8580fee68dd 100644
--- a/frontend/src/scenes/experiments/ExperimentView/components.tsx
+++ b/frontend/src/scenes/experiments/ExperimentView/components.tsx
@@ -493,44 +493,38 @@ export function PageHeaderCustom(): JSX.Element {
)}
{experiment && isExperimentRunning && (
- {!isExperimentStopped && !experiment.archived && (
- <>
-
-
- exposureCohortId ? undefined : createExposureCohort()
- }
- fullWidth
- data-attr={`${
- exposureCohortId ? 'view' : 'create'
- }-exposure-cohort`}
- to={exposureCohortId ? urls.cohort(exposureCohortId) : undefined}
- targetBlank={!!exposureCohortId}
- >
- {exposureCohortId ? 'View' : 'Create'} exposure cohort
-
- loadExperimentResults(true)}
- fullWidth
- data-attr="refresh-experiment"
- >
- Refresh experiment results
-
- loadSecondaryMetricResults(true)}
- fullWidth
- data-attr="refresh-secondary-metrics"
- >
- Refresh secondary metrics
-
- >
- }
- />
-
- >
- )}
+ <>
+
+ (exposureCohortId ? undefined : createExposureCohort())}
+ fullWidth
+ data-attr={`${exposureCohortId ? 'view' : 'create'}-exposure-cohort`}
+ to={exposureCohortId ? urls.cohort(exposureCohortId) : undefined}
+ targetBlank={!!exposureCohortId}
+ >
+ {exposureCohortId ? 'View' : 'Create'} exposure cohort
+
+ loadExperimentResults(true)}
+ fullWidth
+ data-attr="refresh-experiment"
+ >
+ Refresh experiment results
+
+ loadSecondaryMetricResults(true)}
+ fullWidth
+ data-attr="refresh-secondary-metrics"
+ >
+ Refresh secondary metrics
+
+ >
+ }
+ />
+
+ >
{!experiment.end_date && (