From fa12cc408c4555b111576788991a254c2a8c4417 Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Sun, 16 Nov 2025 11:38:06 -0600 Subject: [PATCH] fix comma dangle linter issue --- web/public/notifications-worker.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/public/notifications-worker.js b/web/public/notifications-worker.js index 8a0a8de2f..ba4e033ea 100644 --- a/web/public/notifications-worker.js +++ b/web/public/notifications-worker.js @@ -52,7 +52,7 @@ self.addEventListener("notificationclick", (event) => { "X-CSRF-TOKEN": 1, }, body: JSON.stringify({ ids: [event.notification.data.id] }), - }) + }), // eslint-disable-line comma-dangle ); } break;