feat: add table row for no validators

This commit is contained in:
RadoslavDimchev 2023-11-14 01:32:08 +02:00
parent c47de2c6d1
commit 63d31a85a0
1 changed files with 9 additions and 0 deletions

View File

@ -222,6 +222,15 @@ const ManagementTable = ({ tab }: ManagementTableProps) => {
</td>
</tr>
))}
{filteredValidators.length === 0 && (
<tr>
<td colSpan={11}>
<Text size={15} color={'#647084'} weight={'semibold'}>
No validators
</Text>
</td>
</tr>
)}
</tbody>
</table>
</YStack>