Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion lib/notifications.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
});
Expand Down
1 change: 0 additions & 1 deletion src/notifications.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
});
Expand Down