Skip to content

Commit

Permalink
MAT-7475: remove unneeded feature flags
Browse files Browse the repository at this point in the history
  • Loading branch information
ethankaplan committed Jul 30, 2024
1 parent 501a7e7 commit d1c8a42
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions src/Store/featureFlagStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,11 @@ 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 +20,11 @@ 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 d1c8a42

Please sign in to comment.