Skip to content

Commit

Permalink
feat(signup): remove unused network param from recover calls
Browse files Browse the repository at this point in the history
  • Loading branch information
schnogz committed Jan 7, 2022
1 parent 2105425 commit 36466e5
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,7 @@ export default ({ api, coreSagas, networks }) => {

const restore = function* (action) {
try {
const { captchaToken, email, language, mnemonic, network, password } = action.payload
const { captchaToken, email, language, mnemonic, password } = action.payload
const kvCredentials = (yield select(selectors.auth.getMetadataRestore)).getOrElse({})

yield put(actions.auth.restoreLoading())
Expand All @@ -494,7 +494,6 @@ export default ({ api, coreSagas, networks }) => {
kvCredentials,
language,
mnemonic,
network,
password
})

Expand Down

0 comments on commit 36466e5

Please sign in to comment.