summaryrefslogtreecommitdiff
path: root/ui/service-worker.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/service-worker.js')
-rw-r--r--ui/service-worker.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/service-worker.js b/ui/service-worker.js
index a88c5a2..63b307a 100644
--- a/ui/service-worker.js
+++ b/ui/service-worker.js
@@ -59,7 +59,7 @@ self.addEventListener('push', (event) => {
event.waitUntil(
// How do we control the action you get when you click the notification?
self.registration.showNotification(payload.title, {
- body: payload.body
- })
+ body: payload.body,
+ }),
);
});