diff --git a/Examples/firebase-migration/app/App.js b/Examples/firebase-migration/app/App.js index 04bbd946193aa2ac9d58e4fabe01866ddfd93307..2dedfa1fc651db3ffb39c7856c22e31f6f16c8e6 100644 --- a/Examples/firebase-migration/app/App.js +++ b/Examples/firebase-migration/app/App.js @@ -143,7 +143,10 @@ class MainPage extends Component { "custom_notification": { "title": "Simple FCM Client", "body": "Click me to go to detail", - data: {targetScreen: 'detail'} + data: { + targetScreen: 'detail', + now: new Date().toISOString() + } } }, "priority": 10 @@ -157,7 +160,8 @@ class MainPage extends Component { "sound": "default" }, data: { - targetScreen: 'detail' + targetScreen: 'detail', + now: new Date().toISOString() }, "priority": 10 }