From 4a935ae833b4d7ca8d4a119209bb086a9c71ce6a Mon Sep 17 00:00:00 2001 From: AJAL ODORA JONATHAN <43242517+ODORA0@users.noreply.github.com> Date: Thu, 15 Aug 2024 10:30:48 +0300 Subject: [PATCH] Change config default to false for widgets on PMTCT (#1917) --- packages/esm-ohri-pmtct-app/src/config-schema.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/packages/esm-ohri-pmtct-app/src/config-schema.ts b/packages/esm-ohri-pmtct-app/src/config-schema.ts index 7d86a6203..3d95dc546 100644 --- a/packages/esm-ohri-pmtct-app/src/config-schema.ts +++ b/packages/esm-ohri-pmtct-app/src/config-schema.ts @@ -50,37 +50,37 @@ export const configSchema = { showRecentPregnancy: { _type: Type.Boolean, _description: 'Shows or hides the Recent Pregnancy Summary widget', - _default: true, + _default: false, }, showMotherArtTherapy: { _type: Type.Boolean, _description: 'Shows or hides the ART Therapy widget on MNCH Summary', - _default: true, + _default: false, }, showAppointmentsSummary: { _type: Type.Boolean, _description: 'Shows or hides the Appointments widget on MNCH Summary', - _default: true, + _default: false, }, showHivExposedInfantSummary: { _type: Type.Boolean, _description: 'Shows or hides the HIV Exposed Infant widget on MNCH Summary', - _default: true, + _default: false, }, showTotalPregnantWomen: { _type: Type.Boolean, _description: 'Shows or hides the Total Pregnant Women tile', - _default: true, + _default: false, }, showTotalDeliveries: { _type: Type.Boolean, _description: 'Shows or hides the Total Deliveries tile', - _default: true, + _default: false, }, showHivExposedInfants: { _type: Type.Boolean, _description: 'Shows or hides the HIV Exposed Infants tile', - _default: true, + _default: false, }, obsConcepts: { _type: Type.Object,