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 b692478 commit 096af8dCopy full SHA for 096af8d
src/helpers/appUtils.js
@@ -13,6 +13,7 @@ function parsePatientIds(pathToCSV) {
13
const patientIdsCsvPath = path.resolve(pathToCSV);
14
const patientIds = parse(fs.readFileSync(patientIdsCsvPath, 'utf8'), {
15
columns: true,
16
+ bom: true,
17
}).map((row) => {
18
if (!row.mrn) {
19
throw new Error(`${pathToCSV} has no "mrn" column`);
0 commit comments