From 410f582378ca2f4538e0bec71a7bd49444cd59f0 Mon Sep 17 00:00:00 2001 From: Tanuj Mittal Date: Mon, 16 Aug 2021 18:57:41 -0700 Subject: [PATCH] Fix notebooksTemporarilyDown feature flag (#983) --- 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 5c1e0f789..6e4992fc6 100644 --- a/src/Platform/Hosted/extractFeatures.ts +++ b/src/Platform/Hosted/extractFeatures.ts @@ -75,6 +75,6 @@ export function extractFeatures(given = new URLSearchParams(window.location.sear autoscaleDefault: "true" === get("autoscaledefault"), partitionKeyDefault: "true" === get("partitionkeytest"), partitionKeyDefault2: "true" === get("pkpartitionkeytest"), - notebooksTemporarilyDown: "true" === get("notebooksTemporarilyDown", "true"), + notebooksTemporarilyDown: "true" === get("notebookstemporarilydown", "true"), }; }