diff --git a/src/pages/ValidatorManagement/ManagementTable/ManagementTable.tsx b/src/pages/ValidatorManagement/ManagementTable/ManagementTable.tsx index dadb3954..8b06bb23 100644 --- a/src/pages/ValidatorManagement/ManagementTable/ManagementTable.tsx +++ b/src/pages/ValidatorManagement/ManagementTable/ManagementTable.tsx @@ -1,7 +1,7 @@ +import { Text } from '@status-im/components' import { OptionsIcon } from '@status-im/icons' import './ManagementTable.css' -import { Text } from '@status-im/components' const validators = [ { @@ -53,28 +53,44 @@ const ManagementTable = () => { - Balance + + Balance + - Income + + Income + - Proposals + + Proposals + - Attestations + + Attestations + - Effectiveness + + Effectiveness + - Deposits + + Deposits + - Rank + + Rank + - Status + + Status + @@ -84,31 +100,47 @@ const ManagementTable = () => { - {validator.balance} + + {validator.balance} + - {validator.income} + + {validator.income} + - {validator.proposals} + + {validator.proposals} + - {validator.attestations} + + {validator.attestations} + - {validator.effectiveness} + + {validator.effectiveness} + - {validator.deposits} + + {validator.deposits} + - {validator.rank} + + {validator.rank} + - {validator.status} + + {validator.status} + - + ))}