fix(right and left side): folder names
This commit is contained in:
parent
ae9c70213e
commit
098d7a8671
|
@ -10,7 +10,7 @@ import ValidatorGraffiti from './ValidatorGraffiti'
|
|||
import ValidatorDataTabs from './ManageValidatorTable/ValidatorDataTabs'
|
||||
import Footer from './Footer'
|
||||
|
||||
const LeftManageSide = () => {
|
||||
const LeftManage = () => {
|
||||
return (
|
||||
<Stack
|
||||
width={'50%'}
|
||||
|
@ -34,4 +34,4 @@ const LeftManageSide = () => {
|
|||
)
|
||||
}
|
||||
|
||||
export default LeftManageSide
|
||||
export default LeftManage
|
|
@ -1,8 +1,8 @@
|
|||
import { XStack } from 'tamagui'
|
||||
|
||||
import LeftSidebar from '../../components/General/LeftSidebar/LeftSidebar'
|
||||
import RightManageSettings from './RightManageSettings/RightManageSettings'
|
||||
import LeftManageSide from './LeftManageSide/LeftManageSide'
|
||||
import RightManage from './RightManage/RightManage'
|
||||
import LeftManage from './LeftManage/LeftManage'
|
||||
|
||||
const ManageValidator = () => {
|
||||
return (
|
||||
|
@ -15,8 +15,8 @@ const ManageValidator = () => {
|
|||
flexGrow: 1,
|
||||
}}
|
||||
>
|
||||
<LeftManageSide />
|
||||
<RightManageSettings />
|
||||
<LeftManage />
|
||||
<RightManage />
|
||||
</XStack>
|
||||
</XStack>
|
||||
)
|
||||
|
|
|
@ -3,7 +3,7 @@ import DepositPanel from './Panels/DepositPanel'
|
|||
import ExitPanel from './Panels/ExitPanel'
|
||||
import MigratePanel from './Panels/MigratePanel'
|
||||
|
||||
const RightManageSettings = () => {
|
||||
const RightManage = () => {
|
||||
const isDefault = false
|
||||
const isMigrate = false
|
||||
const isDeposit = false
|
||||
|
@ -19,4 +19,4 @@ const RightManageSettings = () => {
|
|||
)
|
||||
}
|
||||
|
||||
export default RightManageSettings
|
||||
export default RightManage
|
Loading…
Reference in New Issue