Fix issue with feature flag (#1567)

This commit is contained in:
sindhuba 2023-08-08 08:03:42 -07:00 committed by GitHub
parent 92f43c28a7
commit 879cb08949
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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