Browse Source

Fix schema

Manav Rathi 1 year ago
parent
commit
760be52dc5
1 changed files with 2 additions and 2 deletions
  1. 2 2
      desktop/src/main/stores/watch.ts

+ 2 - 2
desktop/src/main/stores/watch.ts

@@ -29,8 +29,8 @@ const watchStoreSchema: Schema<WatchStore> = {
                         type: "object",
                         type: "object",
                         properties: {
                         properties: {
                             path: { type: "string" },
                             path: { type: "string" },
-                            uploadedFileID: { type: "string" },
-                            collectionID: { type: "string" },
+                            uploadedFileID: { type: "number" },
+                            collectionID: { type: "number" },
                         },
                         },
                     },
                     },
                 },
                 },