This commit is contained in:
Henry Jameson 2026-08-04 22:51:24 +03:00
commit 57fbc5126a

View file

@ -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,
)