diff --git a/src/components/BookmarkViews/CompactView.tsx b/src/components/BookmarkViews/CompactView.tsx index d7abf29e..93c186d3 100644 --- a/src/components/BookmarkViews/CompactView.tsx +++ b/src/components/BookmarkViews/CompactView.tsx @@ -5,7 +5,6 @@ import { IconDefinition } from '@fortawesome/fontawesome-svg-core' import { IndividualBookmark } from '../../types/bookmarks' import { formatDateCompact } from '../../utils/bookmarkUtils' import ContentWithResolvedProfiles from '../ContentWithResolvedProfiles' -import { useImageCache } from '../../hooks/useImageCache' interface CompactViewProps { bookmark: IndividualBookmark @@ -32,9 +31,6 @@ export const CompactView: React.FC = ({ const isWebBookmark = bookmark.kind === 39701 const isClickable = hasUrls || isArticle || isWebBookmark - // Get cached image for thumbnail - const cachedImage = useImageCache(articleImage || undefined) - const handleCompactClick = () => { if (!onSelectUrl) return @@ -58,13 +54,6 @@ export const CompactView: React.FC = ({ role={isClickable ? 'button' : undefined} tabIndex={isClickable ? 0 : undefined} > - {/* Thumbnail image */} - {cachedImage && ( -
- -
- )} - {bookmark.isPrivate && (