From caf90521c4482d74033665a78376ea01d5154c34 Mon Sep 17 00:00:00 2001 From: Yuqi Zhou <86260893+yuqizhou77@users.noreply.github.com> Date: Tue, 19 Sep 2023 17:07:59 +0800 Subject: [PATCH] refactor: turn on API_COPILOT by default for Oct (#9976) --- packages/fx-core/src/common/featureFlags.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/fx-core/src/common/featureFlags.ts b/packages/fx-core/src/common/featureFlags.ts index 8bcdd877c2..d66b7427bc 100644 --- a/packages/fx-core/src/common/featureFlags.ts +++ b/packages/fx-core/src/common/featureFlags.ts @@ -45,8 +45,8 @@ export function isCopilotPluginEnabled(): boolean { } export function isApiCopilotPluginEnabled(): boolean { - // return isFeatureFlagEnabled(FeatureFlagName.ApiCopilotPlugin, true) && isCopilotPluginEnabled(); - return isFeatureFlagEnabled(FeatureFlagName.ApiCopilotPlugin, false) && isCopilotPluginEnabled(); + return isFeatureFlagEnabled(FeatureFlagName.ApiCopilotPlugin, true) && isCopilotPluginEnabled(); + // return isFeatureFlagEnabled(FeatureFlagName.ApiCopilotPlugin, false) && isCopilotPluginEnabled(); } export function isCliNewUxEnabled(): boolean {