From 9bc89f28c39bf9be8f75ddd2ae6f8b14955e5d15 Mon Sep 17 00:00:00 2001 From: Sharon Dcruz Date: Tue, 26 Aug 2025 11:52:09 +0530 Subject: [PATCH] Updated --- functions/src/notifications/processNotification.ts | 9 --------- 1 file changed, 9 deletions(-) diff --git a/functions/src/notifications/processNotification.ts b/functions/src/notifications/processNotification.ts index fe7ce6a..6398419 100644 --- a/functions/src/notifications/processNotification.ts +++ b/functions/src/notifications/processNotification.ts @@ -82,15 +82,6 @@ async function getUserAndFCMToken( if (notification.recipientId) { targetUserId = notification.recipientId; logger.info(`Using top-level recipientId: ${targetUserId}`); - } else if (notification.data?.userId) { - targetUserId = notification.data.userId; - logger.info(`Using data.userId: ${targetUserId}`); - } else if (notification.data?.clientId) { - targetUserId = notification.data.clientId; - logger.info(`Using data.clientId: ${targetUserId}`); - } else if (notification.data?.invitorId) { - targetUserId = notification.data.invitorId; - logger.info(`Using data.invitorId: ${targetUserId}`); } else if (notification.data?.phoneNumber) { logger.info( `Looking up user by phone number from data: ${notification.data.phoneNumber}`