Skip to content

Commit c11b95e

Browse files
authored
chore: fix uunnotificationpresentationoption constant in example (#210)
1 parent 2aef383 commit c11b95e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

example/ios/example/AppDelegate.m

+2-2
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@ - (void)userNotificationCenter:(UNUserNotificationCenter *)center
7474
withCompletionHandler:
7575
(void (^)(UNNotificationPresentationOptions options))
7676
completionHandler {
77-
completionHandler(UNAuthorizationOptionSound | UNAuthorizationOptionAlert |
78-
UNAuthorizationOptionBadge);
77+
completionHandler(UNNotificationPresentationOptionSound | UNNotificationPresentationOptionBadge |
78+
UNNotificationPresentationOptionAlert);
7979
}
8080

8181
// Required for the register event.

0 commit comments

Comments
 (0)