From 66a00c67ca7bad402f880fa8f59edb32d5321453 Mon Sep 17 00:00:00 2001 From: Victor Meng Date: Mon, 19 Jun 2023 17:50:19 -0700 Subject: [PATCH] Turn on feature flag --- src/Platform/Hosted/extractFeatures.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Platform/Hosted/extractFeatures.ts b/src/Platform/Hosted/extractFeatures.ts index a76a28931..9b25f697d 100644 --- a/src/Platform/Hosted/extractFeatures.ts +++ b/src/Platform/Hosted/extractFeatures.ts @@ -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"), }; }