Skip to content

Commit

Permalink
feat(exp): fix issuerVerified as boolean
Browse files Browse the repository at this point in the history
  • Loading branch information
whitneypurdum committed Jul 28, 2022
1 parent 5441a4f commit d82eeeb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/claims/claims.service.ts
Expand Up @@ -1508,7 +1508,7 @@ export class ClaimsService {
}
return {
errors: errors,
isVerified: !!proofVerified && !!issuerVerified && !isExpired,
isVerified: !!proofVerified && issuerVerified && !isExpired,
};
}

Expand Down

0 comments on commit d82eeeb

Please sign in to comment.