aboutsummaryrefslogtreecommitdiffstats
path: root/apps/mobile/lib/upload.ts
diff options
context:
space:
mode:
Diffstat (limited to 'apps/mobile/lib/upload.ts')
-rw-r--r--apps/mobile/lib/upload.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/mobile/lib/upload.ts b/apps/mobile/lib/upload.ts
index 0b6db549..b31faa90 100644
--- a/apps/mobile/lib/upload.ts
+++ b/apps/mobile/lib/upload.ts
@@ -1,6 +1,6 @@
import { useMutation } from "@tanstack/react-query";
-import type { ZBookmark } from "@hoarder/shared/types/bookmarks";
+import { BookmarkTypes, ZBookmark } from "@hoarder/shared/types/bookmarks";
import {
zUploadErrorSchema,
zUploadResponseSchema,
@@ -59,7 +59,7 @@ export function useUploadAsset(
const assetId = resp.assetId;
const assetType =
resp.contentType === "application/pdf" ? "pdf" : "image";
- createBookmark({ type: "asset", assetId, assetType });
+ createBookmark({ type: BookmarkTypes.ASSET, assetId, assetType });
},
onError: (e) => {
if (options.onError) {