diff --git a/src/services/bookmarkHelpers.ts b/src/services/bookmarkHelpers.ts index 10b1b2de..3795d5a7 100644 --- a/src/services/bookmarkHelpers.ts +++ b/src/services/bookmarkHelpers.ts @@ -170,15 +170,6 @@ export function hydrateItems( items: IndividualBookmark[], idToEvent: Map ): IndividualBookmark[] { - const kind1Items = items.filter(b => b.kind === 1) - if (kind1Items.length > 0 && idToEvent.size > 0) { - const found = kind1Items.filter(b => idToEvent.has(b.id)) - if (found.length === 0 && kind1Items.length > 0) { - console.log('❌ NO MATCHES! Sample item IDs:', kind1Items.slice(0, 3).map(b => b.id)) - console.log('❌ Map keys:', Array.from(idToEvent.keys()).slice(0, 3)) - } - } - return items .map(item => { const ev = idToEvent.get(item.id)