cleanup: prettier.

This commit is contained in:
2024-11-25 20:05:40 -05:00
parent 71444b0427
commit 507b069ffe
2 changed files with 13 additions and 3 deletions

View File

@ -217,7 +217,9 @@ class TfTabConnectionsElement extends LitElement {
<ul class="w3-ul w3-border">
${this.broadcasts
.filter((x) => x.address)
.filter((x) => self.connections.map(c => c.id).indexOf(x.pubkey) == -1)
.filter(
(x) => self.connections.map((c) => c.id).indexOf(x.pubkey) == -1
)
.map((x) => self.render_broadcast(x))}
</ul>
<h2>Connections</h2>