From 2f27d80057f29d82cbe34cd4b465d3cc9a2f6ebf Mon Sep 17 00:00:00 2001 From: Samuel Johnson <96841389+SFJohnson24@users.noreply.github.com> Date: Thu, 18 Jul 2024 12:07:36 -0400 Subject: [PATCH] SUPP-- Interim Fix --- src/utils/ExcelDataset.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/ExcelDataset.ts b/src/utils/ExcelDataset.ts index 6bc8498..0798cef 100644 --- a/src/utils/ExcelDataset.ts +++ b/src/utils/ExcelDataset.ts @@ -141,7 +141,7 @@ const getRecords = (cols: IVariable[], rows: {}[]): {} => { const getDomainName = (rows: {}[], sheetName: string): string => { if (rows.length > 3) { const domainRow = rows[3]; - const domainName = domainRow["DOMAIN"] || domainRow["RDOMAIN"]; + const domainName = domainRow["DOMAIN"] return domainName || sheetName.toUpperCase().replace(".XPT", ""); } return sheetName.toUpperCase().replace(".XPT", "");