aboutsummaryrefslogtreecommitdiffstats
path: root/apps/mobile/components/bookmarks/BookmarkLinkView.tsx
diff options
context:
space:
mode:
authorMohamed Bassem <me@mbassem.com>2026-01-01 10:01:43 +0200
committerGitHub <noreply@github.com>2026-01-01 08:01:43 +0000
commit3d652eee04d13ce992fbcce9a0fce53d52e99a07 (patch)
treebb8e3a7a5e30be075b351a9ebd5de8f9975f35dc /apps/mobile/components/bookmarks/BookmarkLinkView.tsx
parent7a76216e5c971a300e9db32c93509b0376f6f47e (diff)
downloadkarakeep-3d652eee04d13ce992fbcce9a0fce53d52e99a07.tar.zst
feat: add replace banner and attachment download (#2328)
* feat: add replace banner and attachment download * add pdf preview in mobile app * fix menu order * fix comment
Diffstat (limited to 'apps/mobile/components/bookmarks/BookmarkLinkView.tsx')
-rw-r--r--apps/mobile/components/bookmarks/BookmarkLinkView.tsx3
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/mobile/components/bookmarks/BookmarkLinkView.tsx b/apps/mobile/components/bookmarks/BookmarkLinkView.tsx
index e8a78029..ba4d5b0c 100644
--- a/apps/mobile/components/bookmarks/BookmarkLinkView.tsx
+++ b/apps/mobile/components/bookmarks/BookmarkLinkView.tsx
@@ -1,6 +1,7 @@
import {
BookmarkLinkArchivePreview,
BookmarkLinkBrowserPreview,
+ BookmarkLinkPdfPreview,
BookmarkLinkReaderPreview,
BookmarkLinkScreenshotPreview,
} from "@/components/bookmarks/BookmarkLinkPreview";
@@ -31,5 +32,7 @@ export default function BookmarkLinkView({
return <BookmarkLinkScreenshotPreview bookmark={bookmark} />;
case "archive":
return <BookmarkLinkArchivePreview bookmark={bookmark} />;
+ case "pdf":
+ return <BookmarkLinkPdfPreview bookmark={bookmark} />;
}
}