Added void status to shop info BOD-195

This commit is contained in:
Patrick Fic
2020-07-27 09:21:58 -07:00
parent 6105854b73
commit 74aa63b712
10 changed files with 139 additions and 137 deletions

View File

@@ -49,7 +49,7 @@ if ("serviceWorker" in navigator) {
.register("/firebase-messaging-sw.js")
.then(function (registration) {
console.log(
"**********FCM Registration successful, scope is:",
"[FCM] Registration successful, scope is:",
registration.scope
);
navigator.serviceWorker.addEventListener("message", (event) => {
@@ -58,7 +58,7 @@ if ("serviceWorker" in navigator) {
})
.catch(function (err) {
console.log(
"**********FCM Service worker registration failed, error:",
"[FCM] Service worker registration failed, error:",
err
);
});