Skip to content

Commit

Permalink
MAT-7083 add featureflag
Browse files Browse the repository at this point in the history
  • Loading branch information
ethankaplan committed Sep 12, 2024
1 parent 77e8bc3 commit d23a5f8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Store/featureFlagStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ export interface FeatureFlags {
ShiftTestCasesDates: boolean;
associateMeasures: boolean;
qiCoreStu4Updates: boolean;
MeasureListButtons: boolean;
}
const initialState: FeatureFlags = {
CQLBuilderIncludes: false,
Expand All @@ -30,6 +31,7 @@ const initialState: FeatureFlags = {
ShiftTestCasesDates: false,
associateMeasures: false,
qiCoreStu4Updates: false,
MeasureListButtons: false,
};

let state: FeatureFlags | null = initialState;
Expand Down

0 comments on commit d23a5f8

Please sign in to comment.