Hook up showAddToken to dropdown menu item in account options dropdown

This commit is contained in:
sdtsui 2017-08-22 16:25:23 -07:00
parent 18496ad859
commit 9d69401041
2 changed files with 5 additions and 3 deletions

View File

@ -648,10 +648,9 @@ function showConfigPage (transitionForward = true) {
}
}
function showAddTokenPage (transitionForward = true) {
function showAddTokenPage () {
return {
type: actions.SHOW_ADD_TOKEN_PAGE,
value: transitionForward,
}
}

View File

@ -308,7 +308,7 @@ class AccountDropdowns extends Component {
{
closeMenu: () => {},
onClick: () => {
// Add Token Scren
actions.showAddTokenPage()
},
style: Object.assign(
{},
@ -403,6 +403,9 @@ const mapDispatchToProps = (dispatch) => {
showNewAccountModal: () => {
dispatch(actions.showModal({ name: 'NEW_ACCOUNT' }))
},
showAddTokenPage: () => {
dispatch(actions.showAddTokenPage())
},
addNewAccount: () => dispatch(actions.addNewAccount()),
showImportPage: () => dispatch(actions.showImportPage()),
showQrView: (selected, identity) => dispatch(actions.showQrView(selected, identity)),