1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 11:22:43 +02:00

Fix disclaimer approving action

This commit is contained in:
Dan Finlay 2016-06-16 16:40:55 -07:00
parent af48b94f6f
commit c5d334d372

View File

@ -318,7 +318,8 @@ function showInitializeMenu() {
function agreeToDisclaimer() {
return (dispatch) => {
dispatch(this.showLoadingIndication())
_accountManager.agreeToDisclaimer((err) {
_accountManager.agreeToDisclaimer((err) => {
dispatch(this.hideLoadingIndication())
dispatch({
type: this.AGREE_TO_DISCLAIMER,
})