From 2a971e1346695e8f3c04007b63a0d391173c7752 Mon Sep 17 00:00:00 2001 From: alycecristines Date: Mon, 27 Jan 2025 16:38:05 -0300 Subject: [PATCH] fix(ProjectConfig): fix typo error for experiment ids event array --- lib/project_config/project_config.ts | 2 +- lib/shared_types.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/project_config/project_config.ts b/lib/project_config/project_config.ts index a41347916..6dcd218d8 100644 --- a/lib/project_config/project_config.ts +++ b/lib/project_config/project_config.ts @@ -63,7 +63,7 @@ interface TryCreatingProjectConfigConfig { interface Event { key: string; id: string; - experimentsIds: string[]; + experimentIds: string[]; } interface VariableUsageMap { diff --git a/lib/shared_types.ts b/lib/shared_types.ts index 725d84090..134dfcfeb 100644 --- a/lib/shared_types.ts +++ b/lib/shared_types.ts @@ -413,7 +413,7 @@ export type OptimizelyAudience = { export type OptimizelyEvent = { id: string; key: string; - experimentsIds: string[]; + experimentIds: string[]; }; export interface OptimizelyFeature {