Skip to content

Commit

Permalink
Merge branch 'feat/release-sso' of github.com:blockchain/blockchain-w…
Browse files Browse the repository at this point in the history
…allet-v4-frontend into feat/release-sso
  • Loading branch information
TheLeoB committed Jul 20, 2021
2 parents 78ea3d6 + 96eee8d commit 07abb63
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "blockchain-wallet-v4",
"version": "4.51.4",
"version": "4.51.5",
"license": "AGPL-3.0-or-later",
"private": true,
"author": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,18 @@ class RecoverContainer extends React.PureComponent {

return metadataRestore.cata({
Failure: () =>
kycReset ? (
// strict check here to only show error if kyc cannot be reset
// if metadataRestore fails, we still allow users to restore with
// a valid phrase, and kycReset is undefined
kycReset === false ? (
<Error previousStep={previousStep} />
) : (
<Recover
previousStep={previousStep}
onSubmit={this.onSubmit}
isRegistering={isRegistering}
password={password}
/>
) : (
<Error previousStep={previousStep} />
),
Loading: () => <SpinningLoader width='36px' height='36px' />,
NotAsked: () => <SpinningLoader width='36px' height='36px' />,
Expand Down

0 comments on commit 07abb63

Please sign in to comment.