fix(validator-table): remove useless classname

This commit is contained in:
RadoslavDimchev 2024-03-23 17:38:11 +02:00 committed by Emil Ivanichkov
parent ae44e2ece2
commit 201bac4873
2 changed files with 2 additions and 2 deletions

View File

@ -1,9 +1,9 @@
import { Stack } from 'tamagui' import { Stack } from 'tamagui'
import { MANAGE_VALIDATOR_TABS } from '../../../../constants' import { MANAGE_VALIDATOR_TABS } from '../../../../constants'
import ValidatorTable from './ValidatorTable'
import { Tabs } from '@status-im/components' import { Tabs } from '@status-im/components'
import { useDispatch, useSelector } from 'react-redux' import { useDispatch, useSelector } from 'react-redux'
import ValidatorTable from './ValidatorTable'
import { RootState } from '../../../../redux/store' import { RootState } from '../../../../redux/store'
import { setCurrentTab } from '../../../../redux/ManageValidatorTab/slice' import { setCurrentTab } from '../../../../redux/ManageValidatorTab/slice'

View File

@ -3,7 +3,7 @@ import ValidatorTableHeader from './ValidatorTableHeader'
const ValidatorTable = () => { const ValidatorTable = () => {
return ( return (
<table className="manage-validator-table"> <table>
<ValidatorTableHeader /> <ValidatorTableHeader />
<ValidatorTableBody /> <ValidatorTableBody />
</table> </table>