From fa629591e9a6f28b25c47d127ef8ba88a8c9f74b Mon Sep 17 00:00:00 2001 From: MartinBraquet Date: Thu, 11 Sep 2025 18:45:42 +0200 Subject: [PATCH] Fix unsubscribe URL --- common/src/user-notification-preferences.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/user-notification-preferences.ts b/common/src/user-notification-preferences.ts index ed3af297..1cd1aa8d 100644 --- a/common/src/user-notification-preferences.ts +++ b/common/src/user-notification-preferences.ts @@ -68,7 +68,7 @@ export const getNotificationDestinationsForUser = ( destinations.includes('browser') && !opt_out.includes('browser'), sendToMobile: destinations.includes('mobile') && !opt_out.includes('mobile'), - unsubscribeUrl: 'TODO', + unsubscribeUrl: 'https://compassmeet.com/notifications', urlToManageThisNotification: '/notifications', } }