Skip to content

Commit

Permalink
fix: remove unused function argument
Browse files Browse the repository at this point in the history
  • Loading branch information
gutsyphilip committed May 5, 2022
1 parent 5dd92a5 commit ab84735
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ const SetupLedger = (props) => {

// Set custom path to localstorage
if (customLedgerHdPath) {
setLedgerHdPath({ accountId, path:customLedgerHdPath });
setLedgerHdPath({ accountId, path: customLedgerHdPath });
}

// COIN-OP VERIFY ACCOUNT
Expand All @@ -106,7 +106,7 @@ const SetupLedger = (props) => {
return;
}

await dispatch(createNewAccount({ accountId, fundingOptions, recoveryMethod: 'ledger', publicKey, recaptchaToken, path: customLedgerHdPath })).unwrap();
await dispatch(createNewAccount({ accountId, fundingOptions, recoveryMethod: 'ledger', publicKey, recaptchaToken })).unwrap();
if (fundingOptions?.fundingAmount) {
setLinkdropAmount(fundingOptions.fundingAmount);
}
Expand Down

0 comments on commit ab84735

Please sign in to comment.