diff options
Diffstat (limited to 'apps/web/components/dashboard/preview')
| -rw-r--r-- | apps/web/components/dashboard/preview/BookmarkPreview.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/web/components/dashboard/preview/BookmarkPreview.tsx b/apps/web/components/dashboard/preview/BookmarkPreview.tsx index 01e57e05..13d3c9d8 100644 --- a/apps/web/components/dashboard/preview/BookmarkPreview.tsx +++ b/apps/web/components/dashboard/preview/BookmarkPreview.tsx @@ -2,7 +2,7 @@ import { useEffect, useState } from "react"; import Link from "next/link"; -import { TagsEditor } from "@/components/dashboard/bookmarks/TagsEditor"; +import { BookmarkTagsEditor } from "@/components/dashboard/bookmarks/BookmarkTagsEditor"; import { FullPageSpinner } from "@/components/ui/full-page-spinner"; import { Separator } from "@/components/ui/separator"; import { Skeleton } from "@/components/ui/skeleton"; @@ -147,7 +147,7 @@ export default function BookmarkPreview({ <CreationTime createdAt={bookmark.createdAt} /> <div className="flex items-center gap-4"> <p className="text-sm text-gray-400">Tags</p> - <TagsEditor bookmark={bookmark} /> + <BookmarkTagsEditor bookmark={bookmark} /> </div> <div className="flex gap-4"> <p className="pt-2 text-sm text-gray-400">Note</p> |
