From a66ae08ecdc52b8e842a551ec5cd73b6984fc7fe Mon Sep 17 00:00:00 2001 From: Patrick Tajima Date: Fri, 4 Feb 2022 13:18:05 -0800 Subject: [PATCH] fix: typo --- .../components/accounts/recovery_setup/SetupRecoveryMethod.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/frontend/src/components/accounts/recovery_setup/SetupRecoveryMethod.js b/packages/frontend/src/components/accounts/recovery_setup/SetupRecoveryMethod.js index 19a4d6fa83..32152ef848 100644 --- a/packages/frontend/src/components/accounts/recovery_setup/SetupRecoveryMethod.js +++ b/packages/frontend/src/components/accounts/recovery_setup/SetupRecoveryMethod.js @@ -227,7 +227,7 @@ class SetupRecoveryMethod extends Component { const { secretKey } = parseSeedPhrase(recoverySeedPhrase); const recoveryKeyPair = KeyPair.fromString(secretKey); await validateSecurityCode(accountId, method, securityCode, validateSecurityCodeEnterpriseRecaptchaToken, 'setupRecoveryMethodNewAccount'); - await wallet.saveAccountKeyPair({ implicitAccountId: accountId, recoveryKeyPair }); + await wallet.saveAccountKeyPair({ accountId, recoveryKeyPair }); // IDENTITY VERIFIED FUNDED ACCOUNT if (DISABLE_CREATE_ACCOUNT && !fundingOptions && ENABLE_IDENTITY_VERIFIED_ACCOUNT) {