From a29b4a3a8ebdfa8d2bcf76ecd02877d5e774c04b Mon Sep 17 00:00:00 2001 From: MartinBraquet Date: Wed, 22 Oct 2025 03:40:15 +0200 Subject: [PATCH] Remove badge --- web/public/service-worker.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/public/service-worker.js b/web/public/service-worker.js index 8fa3ea2b..5501ce99 100644 --- a/web/public/service-worker.js +++ b/web/public/service-worker.js @@ -43,7 +43,7 @@ self.addEventListener('push', event => { const options = { body: data.body || 'You have a new message', icon: '/icons/icon-192x192.png', - badge: '/icons/icon-192x192.png', + // badge: '/icons/icon-192x192.png', data: data.url || '/' }; event.waitUntil(self.registration.showNotification(title, options));