From 2a5acf9325f0d9cdc24f98b8412cd57f7258e63b Mon Sep 17 00:00:00 2001 From: gibbyb Date: Wed, 25 Sep 2024 11:39:15 -0500 Subject: [PATCH] Trying to get push notifications to work. Cant tell til its prod --- src/server/functions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server/functions.ts b/src/server/functions.ts index 40a265e..e296c14 100755 --- a/src/server/functions.ts +++ b/src/server/functions.ts @@ -108,7 +108,7 @@ export const sendPushNotification = async (expoPushToken: string, message: strin const notificationMessage = { to: expoPushToken, sound: 'default', - title: 'New message!', + title: `New message!`, body: message, data: { message }, // Extra data you might want to send };