diff options
Diffstat (limited to 'frontend')
| -rw-r--r-- | frontend/sw.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/frontend/sw.js b/frontend/sw.js index bf38ae2..f5d5fa8 100644 --- a/frontend/sw.js +++ b/frontend/sw.js @@ -1,5 +1,7 @@ self.addEventListener('push', (e) => { const data = e.data.json(); + console.log(data); + alert(data); self.registration.showNotification(data.title, { body: data.body, icon: data.icon, |
