removed unsed props

This commit is contained in:
Abhinav-grd 2021-04-27 11:40:38 +05:30
parent fcbd1b7558
commit 58be1d66d7

View file

@ -149,8 +149,7 @@ class UploadService {
public async uploadFiles(
filesWithCollectionToUpload: FileWithCollection[],
existingFiles: file[],
progressBarProps,
setUploadErrors
progressBarProps
) {
try {
checkConnectivity();
@ -159,12 +158,12 @@ class UploadService {
this.filesCompleted = 0;
this.fileProgress = new Map<string, number>();
this.uploadErrors = [];
this.setUploadErrors = setUploadErrors;
this.metadataMap = new Map<string, object>();
this.progressBarProps = progressBarProps;
this.existingFilesCollectionWise = sortFilesIntoCollections(
existingFiles
);
this.updateProgressBarUI();
let metadataFiles: File[] = [];
let actualFiles: FileWithCollection[] = [];