Skip to content

Commit

Permalink
Merge pull request #77 from MeasureAuthoringTool/MAT-6930
Browse files Browse the repository at this point in the history
MAT-6930: Remove Feature Flags
  • Loading branch information
ethankaplan authored Mar 25, 2024
2 parents 69f86ec + b44dd34 commit b7b372f
Show file tree
Hide file tree
Showing 2 changed files with 64 additions and 78 deletions.
128 changes: 64 additions & 64 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 0 additions & 14 deletions src/Store/featureFlagStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,8 @@ const subject = new BehaviorSubject<FeatureFlags | null>(null);
export interface FeatureFlags {
includeSDEValues: boolean;
qdmExport: boolean;
qdmTestCases: boolean;
qiCoreElementsTab: boolean;
highlightingTabs: boolean;
qdmHighlightingTabs: boolean;
disableRunTestCaseWithObservStrat: boolean;
qdmHideJson: boolean;
qdmMeasureDefinitions: boolean;
qdmMeasureReferences: boolean;
importTestCases: boolean;
qiCoreBonnieTestCases: boolean;
enableQdmRepeatTransfer: boolean;
generateCMSID: boolean;
Expand All @@ -24,15 +17,8 @@ export interface FeatureFlags {
const initialState: FeatureFlags = {
includeSDEValues: false,
qdmExport: false,
qdmTestCases: true,
qiCoreElementsTab: false,
highlightingTabs: true,
qdmHighlightingTabs: false,
qdmMeasureDefinitions: false,
qdmMeasureReferences: false,
importTestCases: false,
qiCoreBonnieTestCases: false,
disableRunTestCaseWithObservStrat: true,
qdmHideJson: true,
enableQdmRepeatTransfer: false,
generateCMSID: false,
Expand Down

0 comments on commit b7b372f

Please sign in to comment.