Svelte: enable toggle by default (#64340)

This commit is contained in:
Camden Cheek 2024-08-07 09:38:25 -06:00 committed by GitHub
parent 9f0e1e04b8
commit 993e732583
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -145,7 +145,7 @@ func GetJSContext(ctx context.Context) JSContext {
ff := featureflag.FromContext(ctx)
return JSContext{
ShowToggle: ff.GetBoolOr("web-next-toggle", false),
ShowToggle: ff.GetBoolOr("web-next-toggle", true),
KnownRoutes: skctx.knownRoutes,
EnabledRoutes: skctx.enabledRoutes,
}