We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 096af8d commit df91c74Copy full SHA for df91c74
src/helpers/appUtils.js
@@ -12,7 +12,7 @@ function parsePatientIds(pathToCSV) {
12
// Parse CSV for list of patient IDs
13
const patientIdsCsvPath = path.resolve(pathToCSV);
14
const patientIds = parse(fs.readFileSync(patientIdsCsvPath, 'utf8'), {
15
- columns: true,
+ columns: (header) => header.map((column) => column.toLowerCase()),
16
bom: true,
17
}).map((row) => {
18
if (!row.mrn) {
0 commit comments