From 1ccf54b21b4e0858f7e57f765440b53bf2ce6fec Mon Sep 17 00:00:00 2001 From: Chris Bongers Date: Mon, 30 Mar 2026 10:17:45 +0200 Subject: [PATCH] fix: win experiment default --- src/growthbook.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/growthbook.ts b/src/growthbook.ts index 6514fb1bc6..531d49931b 100644 --- a/src/growthbook.ts +++ b/src/growthbook.ts @@ -123,7 +123,10 @@ export const features = { dailyDigest: new Feature('daily_personalized_digest', { ...digestFeatureBaseConfig, }), - authStrategy: new Feature<'kratos' | 'betterauth'>('auth_strategy', 'kratos'), + authStrategy: new Feature<'kratos' | 'betterauth'>( + 'auth_strategy', + 'betterauth', + ), }; export class ExperimentAllocationClient {