From c0d28402f09c8cbb358829e4bd9cff106f53cc35 Mon Sep 17 00:00:00 2001 From: Andrew Farries Date: Tue, 22 Nov 2022 11:32:25 +0000 Subject: [PATCH] Change feature flag name Use the name that matches the flag as defined in ConfigCat. --- components/dashboard/src/contexts/FeatureFlagContext.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/dashboard/src/contexts/FeatureFlagContext.tsx b/components/dashboard/src/contexts/FeatureFlagContext.tsx index 1953c32ab96f5b..05476cd5fa4884 100644 --- a/components/dashboard/src/contexts/FeatureFlagContext.tsx +++ b/components/dashboard/src/contexts/FeatureFlagContext.tsx @@ -53,7 +53,7 @@ const FeatureFlagContextProvider: React.FC = ({ children }) => { showUseLastSuccessfulPrebuild: { defaultValue: false, setter: setShowUseLastSuccessfulPrebuild }, publicApiExperimentalTeamsService: { defaultValue: false, setter: setUsePublicApiTeamsService }, personalAccessTokensEnabled: { defaultValue: false, setter: setPersonalAccessTokensEnabled }, - useSlowDatabase: { defaultValue: false, setter: setUseSlowDatabase }, + slow_database: { defaultValue: false, setter: setUseSlowDatabase }, }; for (const [flagName, config] of Object.entries(featureFlags)) { if (teams) {