From 36984012a8883f1cbdddf6a59663b1014cf278a2 Mon Sep 17 00:00:00 2001 From: Manav Rathi Date: Wed, 1 May 2024 15:00:18 +0530 Subject: [PATCH] They're all optionals now --- desktop/src/main/stores/upload-status.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/desktop/src/main/stores/upload-status.ts b/desktop/src/main/stores/upload-status.ts index 472f38a7f9..8cb2410df6 100644 --- a/desktop/src/main/stores/upload-status.ts +++ b/desktop/src/main/stores/upload-status.ts @@ -9,15 +9,10 @@ export interface UploadStatusStore { collectionName?: string; /** * Paths to regular files that are pending upload. - * - * This should generally be present, albeit empty, but it is marked optional - * in sympathy with its siblings. */ filePaths?: string[]; /** * Each item is the path to a zip file and the name of an entry within it. - * - * This is marked optional since legacy stores will not have it. */ zipItems?: [zipPath: string, entryName: string][]; /**