Skip to content

Commit

Permalink
refactor: turn on API_COPILOT by default for Oct (#9976)
Browse files Browse the repository at this point in the history
  • Loading branch information
yuqizhou77 authored Sep 19, 2023
1 parent 745d2bc commit caf9052
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/fx-core/src/common/featureFlags.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit caf9052

Please sign in to comment.