Skip to content

Commit 1097854

Browse files
committed
style: remove trailing comma at end of array
1 parent e72253a commit 1097854

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

frontend/src/ts/pages/friends.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -181,10 +181,10 @@ function updatePendingConnections(): void {
181181
<td class="actions">
182182
<button class="accepted" aria-label="accept" data-balloon-pos="up">
183183
<i class="fas fa-check fa-fw"></i>
184-
</button>
184+
</button>
185185
<button class="rejected" aria-label="reject" data-balloon-pos="up">
186186
<i class="fas fa-times fa-fw"></i>
187-
</button>
187+
</button>
188188
<button class="blocked" aria-label="block" data-balloon-pos="up">
189189
<i class="fas fa-shield-alt fa-fw"></i>
190190
</button>
@@ -304,7 +304,7 @@ function buildFriendRow(entry: Friend): HTMLTableRowElement {
304304
entry.streak?.maxLength,
305305
"longest streak",
306306
)}" data-balloon-pos="up">
307-
${formatStreak(entry.streak?.length)}
307+
${formatStreak(entry.streak?.length)}
308308
</span></td>
309309
<td class="small"><span aria-label="${
310310
top15?.details
@@ -318,7 +318,7 @@ function buildFriendRow(entry: Friend): HTMLTableRowElement {
318318
}<div class="sub">${top60?.acc ?? "-"}</div></span></td>
319319
<td class="actions">
320320
${actions}
321-
321+
322322
</td>
323323
</tr>`;
324324

0 commit comments

Comments
 (0)