From 583722088016c0069abef49b341d6b1164fc7080 Mon Sep 17 00:00:00 2001 From: Raju Ahmed Date: Thu, 3 Apr 2025 20:59:00 +0600 Subject: [PATCH] fix typo in experimentIds field of event config --- 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 92b9c1ac5..5a7674668 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 4db7c0da1..7106c8129 100644 --- a/lib/shared_types.ts +++ b/lib/shared_types.ts @@ -395,7 +395,7 @@ export type OptimizelyAudience = { export type OptimizelyEvent = { id: string; key: string; - experimentsIds: string[]; + experimentIds: string[]; }; export interface OptimizelyFeature {