diff --git a/lib/notifications.js b/lib/notifications.js index 277ee4d..3b58f11 100644 --- a/lib/notifications.js +++ b/lib/notifications.js @@ -70,7 +70,6 @@ var Notifications = function (_React$Component) { /// and remove all where uid is not found in the reducer systemNotifications.forEach(function (notification) { if (notificationIds.indexOf(notification.uid) < 0) { - console.log('removing', _this2.system().state.notifications); _this2.system().removeNotification(notification.uid); } }); diff --git a/src/notifications.js b/src/notifications.js index ed1f5b3..066654a 100644 --- a/src/notifications.js +++ b/src/notifications.js @@ -22,7 +22,6 @@ class Notifications extends React.Component { /// and remove all where uid is not found in the reducer (systemNotifications).forEach(notification => { if (notificationIds.indexOf(notification.uid) < 0) { - console.log('removing', this.system().state.notifications); this.system().removeNotification(notification.uid); } });