diff --git a/ui/src/components/ValidatorInfoRow.tsx b/ui/src/components/ValidatorInfoRow.tsx index 81652139..02293966 100644 --- a/ui/src/components/ValidatorInfoRow.tsx +++ b/ui/src/components/ValidatorInfoRow.tsx @@ -62,7 +62,8 @@ export function ValidatorInfoRow({ validator, constraints }: ValidatorInfoRowPro {validator.state.numPools > 0 ? ( <> - {validator.state.totalStakers} / {calculateMaxStakers(validator, constraints)} + {validator.state.totalStakers.toString()} /{' '} + {calculateMaxStakers(validator, constraints)} ) : ( <>--