Skip to content

Commit

Permalink
lint again again
Browse files Browse the repository at this point in the history
  • Loading branch information
ara4n committed Dec 18, 2024
1 parent 5c7c78a commit 51104bc
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/graph.ts
Original file line number Diff line number Diff line change
Expand Up @@ -555,9 +555,7 @@ const redraw = (vis: HTMLDivElement, events: MatrixEvent[], opts: RenderOptions)
if (opts.showAuthChain) {
return `authchild-${p.event_id.slice(1, 5)} authparent-${d?.event_id.slice(1, 5)}`;
}
return (
`${d.authed_list.map((id) => `authparent-${id?.slice(1, 5)}`).join(" ")} ${d.auth_list.map((id) => `authchild-${id?.slice(1, 5)}`).join(" ")}`
);
return `${d.authed_list.map((id) => `authparent-${id?.slice(1, 5)}`).join(" ")} ${d.auth_list.map((id) => `authchild-${id?.slice(1, 5)}`).join(" ")}`;
};

n.append("path")
Expand Down

0 comments on commit 51104bc

Please sign in to comment.