Skip to content

Commit

Permalink
fix(Recover Wallet): amend recover wallet saga
Browse files Browse the repository at this point in the history
  • Loading branch information
plondon committed Jul 24, 2018
1 parent e1592ee commit c3382f4
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions packages/blockchain-wallet-v4/src/redux/wallet/sagas.js
Original file line number Diff line number Diff line change
Expand Up @@ -222,11 +222,7 @@ export default ({ api }) => {
}

const remindWalletGuidSaga = function*({ email, code, sessionToken }) {
const response = yield call(api.remindGuid, email, code, sessionToken)
const { success, message } = response
if (!success) {
throw new Error(message)
}
yield call(api.remindGuid, email, code, sessionToken)
}

const resetWallet2fa = function*({
Expand Down

0 comments on commit c3382f4

Please sign in to comment.