Merge pull request #401 from coralproject/remove-notification-warning

incorrectly using dispatch now that we do pym directly
This commit is contained in:
Riley Davis
2017-03-09 13:01:37 -07:00
committed by GitHub
+1 -1
View File
@@ -256,7 +256,7 @@ const mapStateToProps = state => ({
const mapDispatchToProps = dispatch => ({
requestConfirmEmail: () => dispatch(requestConfirmEmail()),
loadAsset: (asset) => dispatch(fetchAssetSuccess(asset)),
addNotification: (type, text) => dispatch(addNotification(type, text)),
addNotification: (type, text) => addNotification(type, text),
clearNotification: () => dispatch(clearNotification()),
editName: (username) => dispatch(editName(username)),
showSignInDialog: (offset) => dispatch(showSignInDialog(offset)),