From 818488b920171d2fec91e9da6fef0a0d161189a4 Mon Sep 17 00:00:00 2001 From: Kishore <42832651+kishore03109@users.noreply.github.com> Date: Mon, 24 Jun 2024 23:09:55 +0800 Subject: [PATCH] chore(featureFlag): rm export --- src/middleware/featureFlag.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/middleware/featureFlag.ts b/src/middleware/featureFlag.ts index 2b9208ca2..bc1223e99 100644 --- a/src/middleware/featureFlag.ts +++ b/src/middleware/featureFlag.ts @@ -6,7 +6,7 @@ import { getNewGrowthbookInstance } from "@root/utils/growthbook-utils" // Keep one GrowthBook instance at module level // The instance will handle internal cache refreshes via a SSE connection -export const gb = getNewGrowthbookInstance({ +const gb = getNewGrowthbookInstance({ clientKey: config.get("growthbook.clientKey"), subscribeToChanges: true, })