1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Fix token adding bug

This commit is contained in:
Dan Finlay 2017-06-27 14:45:43 -07:00
parent 06706f6e1b
commit 5cfce8c45a

View File

@ -645,7 +645,9 @@ function addToken (address, symbol, decimals) {
if (err) {
return dispatch(actions.displayWarning(err.message))
}
dispatch(actions.goHome())
setTimeout(() => {
dispatch(actions.goHome())
}, 250)
})
}
}