Turn on feature flag

This commit is contained in:
Victor Meng 2023-06-19 17:50:19 -07:00
parent 8eccbd2806
commit 66a00c67ca
1 changed files with 2 additions and 1 deletions

View File

@ -103,7 +103,8 @@ export function extractFeatures(given = new URLSearchParams(window.location.sear
enableLegacyMongoShellV2: "true" === get("enablelegacymongoshellv2"),
enableLegacyMongoShellV2Debug: "true" === get("enablelegacymongoshellv2debug"),
loadLegacyMongoShellFromBE: "true" === get("loadlegacymongoshellfrombe"),
enableCopilot: "true" === get("enablecopilot"),
enableCopilot: true,
// enableCopilot: "true" === get("enablecopilot"),
};
}