aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web/components/dashboard/preview/TextContentSection.tsx
diff options
context:
space:
mode:
authorMohamed Bassem <me@mbassem.com>2025-05-31 15:23:46 +0000
committerMohamed Bassem <me@mbassem.com>2025-05-31 15:23:46 +0000
commitb218118b84291de4a9c1cd400dc58afab7054b78 (patch)
treeae870adffa7a06147e1618016934aafbed75df70 /apps/web/components/dashboard/preview/TextContentSection.tsx
parent3e860b7904e4b5fab9a5256426b03a35c9e165ee (diff)
downloadkarakeep-b218118b84291de4a9c1cd400dc58afab7054b78.tar.zst
refactor: Move bookmark utils from shared-react to shared
Diffstat (limited to 'apps/web/components/dashboard/preview/TextContentSection.tsx')
-rw-r--r--apps/web/components/dashboard/preview/TextContentSection.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/web/components/dashboard/preview/TextContentSection.tsx b/apps/web/components/dashboard/preview/TextContentSection.tsx
index 0c1aae67..4e33bb92 100644
--- a/apps/web/components/dashboard/preview/TextContentSection.tsx
+++ b/apps/web/components/dashboard/preview/TextContentSection.tsx
@@ -3,8 +3,8 @@ import { BookmarkMarkdownComponent } from "@/components/dashboard/bookmarks/Book
import { ScrollArea } from "@radix-ui/react-scroll-area";
import type { ZBookmarkTypeText } from "@karakeep/shared/types/bookmarks";
-import { getAssetUrl } from "@karakeep/shared-react/utils/assetUtils";
import { BookmarkTypes, ZBookmark } from "@karakeep/shared/types/bookmarks";
+import { getAssetUrl } from "@karakeep/shared/utils/assetUtils";
export function TextContentSection({ bookmark }: { bookmark: ZBookmark }) {
if (bookmark.content.type != BookmarkTypes.TEXT) {