Skip to content

Commit

Permalink
Sample
Browse files Browse the repository at this point in the history
  • Loading branch information
rlepinski committed Sep 1, 2023
1 parent 4b6b7bc commit 9d3e5bf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions example/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ Airship.addListener(EventType.ChannelCreated, (event) => {
console.log('ChannelCreated:', JSON.stringify(event));
});

Airship.addListener(EventType.NotificationStatusChangedStatus, (event) => {
console.log('NotificationStatusChangedStatus:', JSON.stringify(event));
Airship.addListener(EventType.PushNotificationStatusChangedStatus, (event) => {
console.log('PushNotificationStatusChangedStatus:', JSON.stringify(event));
});

Airship.addListener(EventType.iOSAuthorizedNotificationSettingsChanged, (event) => {
console.log('iOSAuthorizedNotificationSettingsChanged:', JSON.stringify(event));
Airship.addListener(EventType.IOSAuthorizedNotificationSettingsChanged, (event) => {
console.log('IOSAuthorizedNotificationSettingsChanged:', JSON.stringify(event));
});


Expand Down

0 comments on commit 9d3e5bf

Please sign in to comment.