diff --git a/app/lib/notifications/push.ts b/app/lib/notifications/push.ts index 5dadbda82..436506a2e 100644 --- a/app/lib/notifications/push.ts +++ b/app/lib/notifications/push.ts @@ -46,7 +46,7 @@ class PushNotification { Notifications.events().registerNotificationReceivedForeground( (notification: Notification, completion: (response: NotificationCompletion) => void) => { - completion({ alert: true, sound: true, badge: false }); + completion({ alert: false, sound: false, badge: false }); } );