Skip to content

Commit

Permalink
Set errors and fixableErrors to null
Browse files Browse the repository at this point in the history
  • Loading branch information
MariaHCD committed Aug 19, 2022
1 parent 824933e commit 10ad0b8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/libs/actions/Wallet.js
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ function updatePersonalDetails(personalDetails) {
key: ONYXKEYS.WALLET_ADDITIONAL_DETAILS,
value: {
isLoading: true,
errors: [],
errors: null,
},
},
],
Expand Down Expand Up @@ -398,8 +398,8 @@ function verifyIdentity(parameters) {
key: ONYXKEYS.WALLET_ONFIDO,
value: {
loading: true,
errors: {},
fixableErrors: [],
errors: null,
fixableErrors: null,
},
},
{
Expand All @@ -416,7 +416,7 @@ function verifyIdentity(parameters) {
key: ONYXKEYS.WALLET_ONFIDO,
value: {
loading: false,
errors: {},
errors: null,
},
},
],
Expand Down

0 comments on commit 10ad0b8

Please sign in to comment.