From 760be52dc5eec14aabc26e53c4c23f9ebc0f2fa1 Mon Sep 17 00:00:00 2001 From: Manav Rathi Date: Fri, 19 Apr 2024 12:59:10 +0530 Subject: [PATCH] Fix schema --- desktop/src/main/stores/watch.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/desktop/src/main/stores/watch.ts b/desktop/src/main/stores/watch.ts index e0e061422f..7ee383038a 100644 --- a/desktop/src/main/stores/watch.ts +++ b/desktop/src/main/stores/watch.ts @@ -29,8 +29,8 @@ const watchStoreSchema: Schema = { type: "object", properties: { path: { type: "string" }, - uploadedFileID: { type: "string" }, - collectionID: { type: "string" }, + uploadedFileID: { type: "number" }, + collectionID: { type: "number" }, }, }, },