Fix push notifs

This commit is contained in:
aeroreyna
2022-12-28 23:02:46 -05:00
parent 1f3cc06470
commit b616a6f6f9
+1 -1
View File
@@ -30,7 +30,7 @@ const sendPushNotification = async (profileToken, body, data) => {
let messages = []; let messages = [];
// Construct a message (see https://docs.expo.io/push-notifications/sending-notifications/) // Construct a message (see https://docs.expo.io/push-notifications/sending-notifications/)
messages.push({ messages.push({
to: pushToken, to: pushTokens,
sound: 'default', sound: 'default',
body: body, body: body,
data: data, data: data,