From 879cb089494274cdc5ec7dc24b49bfe747564140 Mon Sep 17 00:00:00 2001 From: sindhuba <122321535+sindhuba@users.noreply.github.com> Date: Tue, 8 Aug 2023 08:03:42 -0700 Subject: [PATCH] Fix issue with feature flag (#1567) --- 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 b766ee304..0f92f0910 100644 --- a/src/Platform/Hosted/extractFeatures.ts +++ b/src/Platform/Hosted/extractFeatures.ts @@ -105,7 +105,7 @@ export function extractFeatures(given = new URLSearchParams(window.location.sear enableLegacyMongoShellV2Debug: "true" === get("enablelegacymongoshellv2debug"), loadLegacyMongoShellFromBE: "true" === get("loadlegacymongoshellfrombe"), enableCopilot: "true" === get("enablecopilot"), - enableNPSSurvey: "true" === get("enableNPSSurvey"), + enableNPSSurvey: "true" === get("enablenpssurvey"), }; }