diff --git a/src/components/conversation/conversation.js b/src/components/conversation/conversation.js index 00b87ac66..ea5637944 100644 --- a/src/components/conversation/conversation.js +++ b/src/components/conversation/conversation.js @@ -305,10 +305,11 @@ const conversation = { topLevel() { const topLevel = this.conversation.reduce( (tl, cur) => - tl.filter((k) => - !this.getReplies(cur.id) - .map((v) => v.id) - .includes(k.id), + tl.filter( + (k) => + !this.getReplies(cur.id) + .map((v) => v.id) + .includes(k.id), ), this.conversation, )