diff --git a/packages/frontend/editor-ui/src/constants.ts b/packages/frontend/editor-ui/src/constants.ts index 395cd6d14d..e267dfbda6 100644 --- a/packages/frontend/editor-ui/src/constants.ts +++ b/packages/frontend/editor-ui/src/constants.ts @@ -740,7 +740,7 @@ export const EXPERIMENTS_TO_TRACK = [ WORKFLOW_BUILDER_EXPERIMENT.name, ]; -export const WORKFLOW_EVALUATION_EXPERIMENT = '025_workflow_evaluation'; +export const WORKFLOW_EVALUATION_EXPERIMENT = '032_evaluation_mvp'; export const MFA_FORM = { MFA_TOKEN: 'MFA_TOKEN', diff --git a/packages/frontend/editor-ui/src/stores/evaluation.store.ee.ts b/packages/frontend/editor-ui/src/stores/evaluation.store.ee.ts index 2b4ea06e88..a0903a74ac 100644 --- a/packages/frontend/editor-ui/src/stores/evaluation.store.ee.ts +++ b/packages/frontend/editor-ui/src/stores/evaluation.store.ee.ts @@ -30,7 +30,7 @@ export const useEvaluationStore = defineStore( // Computed - // Enable with `window.featureFlags.override('025_workflow_evaluation', true)` + // Enable with `window.featureFlags.override('032_evaluation_mvp', true)` const isFeatureEnabled = computed(() => posthogStore.isFeatureEnabled(WORKFLOW_EVALUATION_EXPERIMENT), );