Skip to content

Commit

Permalink
Merge pull request #93 from MeasureAuthoringTool/MAT-7475
Browse files Browse the repository at this point in the history
MAT-7475: remove unneeded feature flags
  • Loading branch information
ethankaplan authored Jul 30, 2024
2 parents 501a7e7 + 7e89a00 commit f4bcc93
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions src/Store/featureFlagStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,10 @@ import { BehaviorSubject } from "rxjs";
const subject = new BehaviorSubject<FeatureFlags | null>(null);
export interface FeatureFlags {
CQLBuilderIncludes: boolean;
includeSDEValues: boolean;
qdmExport: boolean;
qiCoreElementsTab: boolean;
qdmHideJson: boolean;
qiCoreBonnieTestCases: boolean;
enableQdmRepeatTransfer: boolean;
generateCMSID: boolean;
manifestExpansion: boolean;
testCaseExport: boolean;
qdmCodeSearch: boolean;
QDMValueSetSearch: boolean;
CQLBuilderDefinitions: boolean;
Expand All @@ -24,15 +19,10 @@ export interface FeatureFlags {
}
const initialState: FeatureFlags = {
CQLBuilderIncludes: false,
includeSDEValues: false,
qdmExport: false,
qiCoreElementsTab: false,
qiCoreBonnieTestCases: false,
qdmHideJson: true,
enableQdmRepeatTransfer: false,
generateCMSID: false,
manifestExpansion: false,
testCaseExport: false,
qdmCodeSearch: false,
QDMValueSetSearch: false,
CQLBuilderDefinitions: false,
Expand Down

0 comments on commit f4bcc93

Please sign in to comment.