From 57fbc5126ac62ee5cb80774f5987023815d86273 Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Tue, 4 Aug 2026 22:51:24 +0300 Subject: [PATCH] lint --- src/components/conversation/conversation.js | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) 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, )