Skip to content

Commit

Permalink
Merge branch 'master' into POC-367
Browse files Browse the repository at this point in the history
  • Loading branch information
drizzentic authored Jul 12, 2023
2 parents 2d775af + 12e8afb commit 47230de
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions service/patient-reminder.service.js
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,6 @@ function qualifiesDifferenciatedReminders(data) {
}

function TPTReminders(data) {
console.log('data', data);
let reminders = [];
let months = 6;
let treatment = 'INH';
Expand Down Expand Up @@ -902,7 +901,7 @@ function getFPExpiryDate(data) {
}

async function generateReminders(etlResults, eidResults) {
console.log('REMINDERS generateReminders');
// console.log('REMINDERS generateReminders');
let reminders = [];
let patientReminder;
if (etlResults && etlResults.length > 0) {
Expand Down Expand Up @@ -1024,7 +1023,7 @@ function getCerivalScreeningReminder(personId) {
})
.catch((error) => {
resolve([]);
console.log('Error', error);
console.error('Error', error);
});
});
}
Expand Down

0 comments on commit 47230de

Please sign in to comment.