Skip to content

Commit

Permalink
Merge pull request #511 from provenance-io/aj/add-validater-kyc
Browse files Browse the repository at this point in the history
Add KYC metric back
  • Loading branch information
webbushka committed Jun 22, 2023
2 parents 44b4db2 + 0e7f51c commit 4c187ef
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions src/Pages/Validator/Components/ValidatorMetrics.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -100,11 +100,10 @@ export const ValidatorMetrics = () => {
.round(2)
.toString()}%`,
},
// TODO: Uncomment when metrics are updated
// {
// metric: 'KYC Completed',
// value: `${validatorMetrics?.isVerified ? 'Yes' : 'No'}`,
// },
{
metric: 'KYC Completed',
value: `${validatorMetrics?.isVerified ? 'Yes' : 'No'}`,
},
];
return (
<div>
Expand Down

0 comments on commit 4c187ef

Please sign in to comment.