diff options
| author | Mohamed Bassem <me@mbassem.com> | 2025-05-31 15:23:46 +0000 |
|---|---|---|
| committer | Mohamed Bassem <me@mbassem.com> | 2025-05-31 15:23:46 +0000 |
| commit | b218118b84291de4a9c1cd400dc58afab7054b78 (patch) | |
| tree | ae870adffa7a06147e1618016934aafbed75df70 /apps/web/components/dashboard/preview/TextContentSection.tsx | |
| parent | 3e860b7904e4b5fab9a5256426b03a35c9e165ee (diff) | |
| download | karakeep-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.tsx | 2 |
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) { |
