diff --git a/lib/blocs/upload/upload_state.dart b/lib/blocs/upload/upload_state.dart index 2f24e32df..abd64dde4 100644 --- a/lib/blocs/upload/upload_state.dart +++ b/lib/blocs/upload/upload_state.dart @@ -164,8 +164,8 @@ class UploadReady extends UploadState { List? arnsRecords, bool? showReviewButtonText, List? selectedManifestSelections, - bool? isCustomManifest, - bool? isUploadingCustomManifest, + bool? shouldShowCustomManifestCheckbox, + bool? uploadFileAsCustomManifest, }) { return UploadReady( loadingArNSNames: loadingArNSNames ?? this.loadingArNSNames, @@ -190,10 +190,10 @@ class UploadReady extends UploadState { showReviewButtonText: showReviewButtonText ?? this.showReviewButtonText, selectedManifestSelections: selectedManifestSelections ?? this.selectedManifestSelections, - shouldShowCustomManifestCheckbox: - isCustomManifest ?? this.shouldShowCustomManifestCheckbox, + shouldShowCustomManifestCheckbox: shouldShowCustomManifestCheckbox ?? + this.shouldShowCustomManifestCheckbox, uploadFileAsCustomManifest: - isUploadingCustomManifest ?? this.uploadFileAsCustomManifest, + uploadFileAsCustomManifest ?? this.uploadFileAsCustomManifest, ); }