ravi
ravi

Reputation: 1145

Firebase web push notifications

Hey guys I am using firebase push notifications in the web application, I am showing the notification via the service worker as mentioned in the firebase documentation. the problem is when I open the browser , I see multiple push notifications stacked upon one another , as its very annoying to see many push notifications , is there any way to combine push notifications into one, based on some attribute.

Upvotes: 0

Views: 372

Answers (1)

oninross
oninross

Reputation: 999

As far as I know, you cannot group them. That is why many users tend to turn off notifications in their mobile devices because it is annoying. You have to follow the basic principles of push notifications.

  • It must be timely
  • It must be relevant to the users

Upvotes: 1

Related Questions