From b4b1ade97878c5465f6d23c374c5f481936068d0 Mon Sep 17 00:00:00 2001 From: Vincent Salucci <26154748+vincentsalucci@users.noreply.github.com> Date: Tue, 13 Aug 2024 11:19:52 -0500 Subject: [PATCH] chore: remove fc v1 feature flag, refs PM-10295 (#10487) --- libs/common/src/enums/feature-flag.enum.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/libs/common/src/enums/feature-flag.enum.ts b/libs/common/src/enums/feature-flag.enum.ts index 87b372d3b1..f1b4ecffcc 100644 --- a/libs/common/src/enums/feature-flag.enum.ts +++ b/libs/common/src/enums/feature-flag.enum.ts @@ -6,7 +6,6 @@ export enum FeatureFlag { BrowserFilelessImport = "browser-fileless-import", ItemShare = "item-share", - FlexibleCollectionsV1 = "flexible-collections-v-1", // v-1 is intentional GeneratorToolsModernization = "generator-tools-modernization", ShowPaymentMethodWarningBanners = "show-payment-method-warning-banners", EnableConsolidatedBilling = "enable-consolidated-billing", @@ -48,7 +47,6 @@ const FALSE = false as boolean; export const DefaultFeatureFlagValue = { [FeatureFlag.BrowserFilelessImport]: FALSE, [FeatureFlag.ItemShare]: FALSE, - [FeatureFlag.FlexibleCollectionsV1]: FALSE, [FeatureFlag.GeneratorToolsModernization]: FALSE, [FeatureFlag.ShowPaymentMethodWarningBanners]: FALSE, [FeatureFlag.EnableConsolidatedBilling]: FALSE,