Skip to content

Commit

Permalink
fix: Unhandled error of empty customization
Browse files Browse the repository at this point in the history
  • Loading branch information
chavda-bhavik committed Apr 3, 2024
1 parent cfb3b39 commit aa7f4cf
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@ export class MakeUploadEntry {
},
'chunkFormat recordFormat'
);
customChunkFormat = defaultCustomization.chunkFormat;
customRecordFormat = defaultCustomization.recordFormat;
customChunkFormat = defaultCustomization?.chunkFormat;
customRecordFormat = defaultCustomization?.recordFormat;
}

const fileService = new CSVFileService2();
Expand Down

0 comments on commit aa7f4cf

Please sign in to comment.