From 199e78d6b1f7ed9166a9b8dd078519c0597ab47e Mon Sep 17 00:00:00 2001 From: Claw AI Date: Tue, 31 Mar 2026 20:09:07 +0000 Subject: [PATCH] chore: set VAPID key for FCM --- app/utils/firebase.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/utils/firebase.js b/app/utils/firebase.js index 8314826..2c9f636 100644 --- a/app/utils/firebase.js +++ b/app/utils/firebase.js @@ -38,7 +38,7 @@ export async function requestNotificationPermission() { const registration = await navigator.serviceWorker.register("/firebase-messaging-sw.js"); const token = await getToken(messaging, { - vapidKey: "BO0tGzMOqN3xQp8IG2wQEXwJKUJfx7T3eVvLq3HjC2Q", // TODO: Replace with your VAPID key from Firebase Console + vapidKey: "BGZ4Fo8rRhoTdStLGlCySDZOnAX4ekCA0e3HDWXL5uEi2kOnXynYjbaDbY15002phUrFqxBpPPFHgfH2VhrmFDU", serviceWorkerRegistration: registration, });