Remove `console.log`

This commit is contained in:
Karina Kwiatek 2023-01-02 12:57:14 +01:00
parent c20974d182
commit 1adf3956ba
1 changed files with 0 additions and 1 deletions

View File

@ -1,7 +1,6 @@
self.addEventListener('push', function (event) { self.addEventListener('push', function (event) {
if (event.data) { if (event.data) {
const notification = event.data.json(); const notification = event.data.json();
console.log(event.data);
event.waitUntil(self.registration.showNotification(notification.title, { event.waitUntil(self.registration.showNotification(notification.title, {
body: notification.body, body: notification.body,