chore(right-manage-settings): change component name

This commit is contained in:
RadoslavDimchev 2024-02-19 21:29:44 +02:00 committed by Emil Ivanichkov
parent 658f8ea140
commit 21e2ea8c76
2 changed files with 4 additions and 4 deletions

View File

@ -2,7 +2,7 @@ import { XStack, YStack } from 'tamagui'
import { Stack } from 'tamagui' import { Stack } from 'tamagui'
import RightPanel from './RightPanel/RightPanel' import RightManageSettings from './RightManageSettings/RightManageSettings'
import ValidatorInfo from './ValidatorInfo' import ValidatorInfo from './ValidatorInfo'
import DepositStatus from './DepositStatus' import DepositStatus from './DepositStatus'
import Header from './Header' import Header from './Header'
@ -31,7 +31,7 @@ const ManageValidator = () => {
<ValidatorDataTabs /> <ValidatorDataTabs />
<Footer /> <Footer />
</Stack> </Stack>
<RightPanel /> <RightManageSettings />
</XStack> </XStack>
) )
} }

View File

@ -2,7 +2,7 @@ import { YStack } from 'tamagui'
import Icon from '../../../../components/General/Icon' import Icon from '../../../../components/General/Icon'
import { Text } from '@status-im/components' import { Text } from '@status-im/components'
const RightPanel = () => { const RightManageSettings = () => {
return ( return (
<YStack <YStack
space={'$2'} space={'$2'}
@ -21,4 +21,4 @@ const RightPanel = () => {
) )
} }
export default RightPanel export default RightManageSettings