Solved Can not close notifications from popup #29

This commit is contained in:
Qolzam
2017-10-20 21:47:03 +07:00
parent 2a38df0b6d
commit 69f0125de5

View File

@@ -134,8 +134,8 @@ export class NotifyItem extends Component {
const mapDispatchToProps = (dispatch, ownProps) => {
return {
goTo: (url) => dispatch(push(url)),
seenNotify: (id) => dispatch(notifyActions.dbSeenNotify(id)),
deleteNotiy: (id) => dispatch(notifyActions.dbDeleteNotify(id))
seenNotify: (id) => dispatch(notifyActions.dbSeenNotification(id)),
deleteNotiy: (id) => dispatch(notifyActions.dbDeleteNotification(id))
}
}