Remove `console.log`
This commit is contained in:
parent
c20974d182
commit
1adf3956ba
|
@ -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,
|
||||||
|
|
Loading…
Reference in New Issue