Skip to content

Commit

Permalink
chore: Add LIST_COMPONENT feature flag
Browse files Browse the repository at this point in the history
  • Loading branch information
DafyddLlyr committed May 3, 2024
1 parent f4df65a commit 4631d0f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion editor.planx.uk/src/lib/featureFlags.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
// add/edit/remove feature flags in array below
const AVAILABLE_FEATURE_FLAGS = ["UNDO", "EDITOR_NAVIGATION"] as const;
const AVAILABLE_FEATURE_FLAGS = [
"UNDO",
"EDITOR_NAVIGATION",
"LIST_COMPONENT",
] as const;

type FeatureFlag = (typeof AVAILABLE_FEATURE_FLAGS)[number];

Expand Down

0 comments on commit 4631d0f

Please sign in to comment.