diff --git a/src/Platform/Hosted/extractFeatures.ts b/src/Platform/Hosted/extractFeatures.ts index ed9a39205..57656b14d 100644 --- a/src/Platform/Hosted/extractFeatures.ts +++ b/src/Platform/Hosted/extractFeatures.ts @@ -108,10 +108,10 @@ export function extractFeatures(given = new URLSearchParams(window.location.sear enableLegacyMongoShellV2Debug: "true" === get("enablelegacymongoshellv2debug"), loadLegacyMongoShellFromBE: "true" === get("loadlegacymongoshellfrombe"), enablePriorityBasedThrottling: "true" === get("enableprioritybasedthrottling"), - enableCopilot: "true" === get("enablecopilot"), + enableCopilot: "true" === get("enablecopilot", "true"), copilotVersion: get("copilotversion") ?? "v1.0", disableCopilotPhoenixGateaway: "true" === get("disablecopilotphoenixgateaway"), - enableCopilotFullSchema: "false" === get("enablecopilotfullschema") ? false : true, + enableCopilotFullSchema: "true" === get("enablecopilotfullschema", "true"), }; }