Skip to content

Commit

Permalink
fix: Unhandled error of empty customization (#540)
Browse files Browse the repository at this point in the history
  • Loading branch information
chavda-bhavik authored Apr 3, 2024
2 parents cfb3b39 + aa7f4cf commit a0c8788
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 a0c8788

Please sign in to comment.