From 6d5e7d1df16cb0a47854cd28aa70bae953d067de Mon Sep 17 00:00:00 2001 From: Julien Oculi Date: Fri, 16 May 2025 12:22:36 +0200 Subject: [PATCH] fix(webpush): improve registration notification text --- routes/api/webpush/subscription.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/api/webpush/subscription.ts b/routes/api/webpush/subscription.ts index ad1d626..e79e69f 100644 --- a/routes/api/webpush/subscription.ts +++ b/routes/api/webpush/subscription.ts @@ -10,7 +10,7 @@ export const handler = define.handlers({ await saveSubscription(subscription) await sendWebPushNotification( - 'Notifications desormais disponible sur votre appareil', + 'Les notifications sont desormais disponibles sur votre appareil', {}, (sub) => sub.keys !== undefined && sub.keys.auth === subscription.keys?.auth,