fix: remove encrypted cyphertext display from bookmark list

- Remove display of top-level bookmark.content and bookmark.parsedContent
- These fields contain encrypted data that shouldn't be shown to users
- Individual bookmarks are already displayed properly within each list
This commit is contained in:
Gigi
2025-10-07 04:56:42 +01:00
parent d59d27419e
commit 704033e6cb

View File

@@ -136,13 +136,6 @@ export const BookmarkList: React.FC<BookmarkListProps> = ({
</div>
</div>
)}
{bookmark.parsedContent ? (
<div className="bookmark-content">
{renderParsedContent(bookmark.parsedContent)}
</div>
) : bookmark.content && (
<p className="bookmark-content">{bookmark.content}</p>
)}
<div className="bookmark-meta">
<span>Created: {formatDate(bookmark.created_at)}</span>
</div>