From 211403f584ae87b6641710e558169875c144c709 Mon Sep 17 00:00:00 2001 From: Jason Zimdars Date: Mon, 21 Jul 2025 18:49:29 -0500 Subject: [PATCH] Remove debug --- app/javascript/controllers/notifications_controller.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/javascript/controllers/notifications_controller.js b/app/javascript/controllers/notifications_controller.js index f98f4eba0..3780e206d 100644 --- a/app/javascript/controllers/notifications_controller.js +++ b/app/javascript/controllers/notifications_controller.js @@ -29,7 +29,7 @@ export default class extends Controller { const registration = await this.#getServiceWorkerRegistration() || await this.#registerServiceWorker() switch(Notification.permission) { - case "denied": { console.log("Notification.permission: denied"); break } + case "denied": { break } case "granted": { this.#subscribe(registration); break } case "default": { this.#requestPermissionAndSubscribe(registration) } }