Skip to content

Commit

Permalink
Merge pull request #2125 from dimadeveatii/master
Browse files Browse the repository at this point in the history
Fix 2122
  • Loading branch information
Boris Tacyniak authored Aug 24, 2021
2 parents 17ad0ae + 8566bbb commit 60979a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions component/index.android.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ NotificationsComponent.prototype.unsubscribeFromTopic = function(topic) {
RNPushNotification.unsubscribeFromTopic(topic);
};

NotificationsComponent.prototype.cancelLocalNotifications = function(details) {
RNPushNotification.cancelLocalNotifications(details);
NotificationsComponent.prototype.cancelLocalNotification = function(details) {
RNPushNotification.cancelLocalNotification(details);
};

NotificationsComponent.prototype.clearLocalNotification = function(details, tag) {
Expand Down

0 comments on commit 60979a1

Please sign in to comment.