From 0408a53121c92f64a4e42fa37ec48fd7380fa242 Mon Sep 17 00:00:00 2001 From: v-darkora <134300273+v-darkora@users.noreply.github.com> Date: Tue, 12 Sep 2023 16:17:10 +0200 Subject: [PATCH] Change deafult schema feature flag (#1604) --- src/Platform/Hosted/extractFeatures.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Platform/Hosted/extractFeatures.ts b/src/Platform/Hosted/extractFeatures.ts index 0ca6b6397..ed9a39205 100644 --- a/src/Platform/Hosted/extractFeatures.ts +++ b/src/Platform/Hosted/extractFeatures.ts @@ -111,7 +111,7 @@ export function extractFeatures(given = new URLSearchParams(window.location.sear enableCopilot: "true" === get("enablecopilot"), copilotVersion: get("copilotversion") ?? "v1.0", disableCopilotPhoenixGateaway: "true" === get("disablecopilotphoenixgateaway"), - enableCopilotFullSchema: "true" === get("enablecopilotfullschema"), + enableCopilotFullSchema: "false" === get("enablecopilotfullschema") ? false : true, }; }