feat(csv-read2objects): disable header encoding

This commit is contained in:
dancingCycle 2023-07-07 05:39:06 +02:00
parent f4582051e8
commit e9a9afbb6e
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ const CsvReader = () => {
console.log('handleParse() file valid');
Papa.parse(file, {
complete: updateData,
header: true,
header: false,
encoding: 'ISO-8859-1'
});
}