Skip to content
This repository has been archived by the owner on Nov 24, 2022. It is now read-only.

Commit

Permalink
fix: display attestation status in claims list (#348)
Browse files Browse the repository at this point in the history
  • Loading branch information
rflechtner authored Apr 28, 2021
1 parent 93e3ee8 commit bbe2c53
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/state/ducks/Claims.ts
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,13 @@ class Store {
(attestedClaim: IAttestedClaim, index: number) => {
if (attestedClaim.attestation.claimHash === revokedHash) {
// avoid changing claims while iterating
setIns.push([myClaimHash, 'attestedClaims', index, 'revoked'])
setIns.push([
myClaimHash,
'attestedClaims',
index,
'attestation',
'revoked',
])
}
}
)
Expand Down

0 comments on commit bbe2c53

Please sign in to comment.