fix(bookmarks): show bookmarked event author instead of list signer\n\n- During hydration, set IndividualBookmark.pubkey to hydrated event.pubkey\n- Ensures author resolution uses the actual author of the bookmarked event

This commit is contained in:
Gigi
2025-10-03 00:21:24 +02:00
parent 20f37b94e1
commit 2ca350ee5f

View File

@@ -94,6 +94,7 @@ export function hydrateItems(
if (!ev) return item
return {
...item,
pubkey: ev.pubkey || item.pubkey,
content: ev.content || item.content || '',
created_at: ev.created_at || item.created_at,
kind: ev.kind || item.kind,