diff --git a/src/client/app/sw.js b/src/client/app/sw.js index 19d2ed06e9..ac7ea20acf 100644 --- a/src/client/app/sw.js +++ b/src/client/app/sw.js @@ -52,8 +52,6 @@ self.addEventListener('push', ev => { const { type, body } = ev.data.json(); - console.log(type, body); - const n = composeNotification(type, body); return self.registration.showNotification(n.title, { body: n.body,