Skip to content

Commit

Permalink
Merge pull request #1662 from onaio/fix-showing-irs-mopup
Browse files Browse the repository at this point in the history
Fix checking of irs mopup reporting page
  • Loading branch information
ciremusyoka committed Sep 7, 2021
2 parents 50b99be + 3b782c6 commit ac51c62
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/configs/env.ts
Original file line number Diff line number Diff line change
Expand Up @@ -695,7 +695,8 @@ export type OPENSRP_MAX_PLANS_PER_REQUEST = typeof OPENSRP_MAX_PLANS_PER_REQUEST
export const TASK_GENERATION_STATUS = setEnv('REACT_APP_TASK_GENERATION_STATUS', IGNORE);
export type TASK_GENERATION_STATUS = typeof TASK_GENERATION_STATUS;

export const ENABLE_IRS_MOPUP_REPORTING = setEnv('REACT_APP_ENABLE_IRS_MOPUP_REPORTING', false);
export const ENABLE_IRS_MOPUP_REPORTING =
setEnv('REACT_APP_ENABLE_IRS_MOPUP_REPORTING', false) === 'true';
export type ENABLE_IRS_MOPUP_REPORTING = typeof ENABLE_IRS_MOPUP_REPORTING;

export const SUPERSET_IRS_MOPUP_REPORTING_JURISDICTIONS_DATA_SLICES: string = setEnv(
Expand Down

0 comments on commit ac51c62

Please sign in to comment.