fix(editor): Change feature flag for evaluations (no-changelog) (#15728)

This commit is contained in:
jeanpaul 2025-05-27 11:20:50 +02:00 committed by GitHub
parent 767576d5ad
commit ca0b38d64e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -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',

View File

@ -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),
);