diff --git a/src/components/Webmentions.astro b/src/components/Webmentions.astro index 58e9efb..bc83bf8 100644 --- a/src/components/Webmentions.astro +++ b/src/components/Webmentions.astro @@ -15,6 +15,10 @@ const { likes, reposts, replies, mentions } = groupMentions(all); const facepile = [...likes, ...reposts]; +console.log( + `[webmentions component] target=${target.toString()} all=${all.length} likes=${likes.length} reposts=${reposts.length} replies=${replies.length} mentions=${mentions.length} facepile=${facepile.length}`, +); + function authorInitial(m: WMEntry) { return m.author?.name?.trim()?.[0]?.toUpperCase() ?? '?'; }