diff --git a/components/WebMention.js b/components/WebMention.js index 1a3db184..375a0141 100644 --- a/components/WebMention.js +++ b/components/WebMention.js @@ -95,7 +95,7 @@ const WebmentionReplies = ({ target }) => { ...new Map(mentions.map((item) => [item.author.url, item])).values() ].sort((a, b) => new Date(a['wm-received']) - new Date(b['wm-received'])) - const replies = distinctMentions.filter( + const replies = mentions.filter( (mention) => 'in-reply-to' in mention && 'content' in mention )