diff --git a/packages/app/src/Element/Bookmarks.tsx b/packages/app/src/Element/Bookmarks.tsx index 10f8b381..a347c752 100644 --- a/packages/app/src/Element/Bookmarks.tsx +++ b/packages/app/src/Element/Bookmarks.tsx @@ -45,7 +45,11 @@ const Bookmarks = ({ pubkey, bookmarks, related }: BookmarksProps) => { .filter(b => (onlyPubkey === "all" ? true : b.pubkey === onlyPubkey)) .map(n => { switch (n.kind) { - case EventKind.TextNote: + case EventKind.Reaction: + case EventKind.Repost: + case EventKind.ZapReceipt: + return ; + default: return ( { options={{ showTime: false, showBookmarked: true, canUnbookmark: loginPubKey === pubkey }} /> ); - case EventKind.Reaction: - case EventKind.Repost: - case EventKind.ZapReceipt: - return ; } - return ( - - ); })} );