Skip to content

Commit 072d08d

Browse files
committed
updated country and currency as required columns
1 parent 6b99a13 commit 072d08d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,9 +178,9 @@ async function injectClientTemplateColumnsIntoSheet(workbook, sheetName, data) {
178178
}
179179
return null
180180
}
181-
let colCountry = findHeaderCol(['Country', 'country'])
181+
let colCountry = findHeaderCol(['Country*', 'country'])
182182
let colNob = findHeaderCol(['Nature of Business*', 'category', 'NoB'])
183-
let colCurrency = findHeaderCol(['Currency', 'currency'])
183+
let colCurrency = findHeaderCol(['Currency*', 'currency'])
184184
// Apply validations row-wise
185185
const maxRow = Math.max(sheet.rowCount, 200)
186186
for (let row = 2; row <= maxRow; row++) {

0 commit comments

Comments
 (0)