From b90f7c07fb642a10d4d7da79345ac410733fe83e Mon Sep 17 00:00:00 2001 From: pinzart90 Date: Tue, 5 Nov 2024 22:47:57 -0500 Subject: [PATCH] Update FeatureFlagsClient.cs --- src/Tools/DynamoFeatureFlags/FeatureFlagsClient.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Tools/DynamoFeatureFlags/FeatureFlagsClient.cs b/src/Tools/DynamoFeatureFlags/FeatureFlagsClient.cs index 26917652f79..1d618f5fcfb 100644 --- a/src/Tools/DynamoFeatureFlags/FeatureFlagsClient.cs +++ b/src/Tools/DynamoFeatureFlags/FeatureFlagsClient.cs @@ -85,8 +85,7 @@ internal FeatureFlagsClient(string userkey, string mobileKey = null, bool testMo AllFlags = LdValue.ObjectFrom(new Dictionary { { "TestFlag1",LdValue.Of(true) }, { "TestFlag2", LdValue.Of("I am a string") }, //in tests we want instancing on so we can test it. - { "graphics-primitive-instancing", LdValue.Of(true) } - }); + { "graphics-primitive-instancing", LdValue.Of(true) } }); return; }