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"), }; }