fix(right and left side): folder names

This commit is contained in:
RadoslavDimchev 2024-03-23 16:29:50 +02:00 committed by Emil Ivanichkov
parent ae9c70213e
commit 098d7a8671
34 changed files with 8 additions and 8 deletions

View File

@ -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

View File

@ -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>
)

View File

@ -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