diff --git a/src/components/General/RightSideBar/RightSidebar.tsx b/src/components/General/RightSideBar/RightSidebar.tsx
index 7840f8fc..14b45dfa 100644
--- a/src/components/General/RightSideBar/RightSidebar.tsx
+++ b/src/components/General/RightSideBar/RightSidebar.tsx
@@ -6,22 +6,22 @@ import {
CopyIcon,
OptionsIcon,
} from '@status-im/icons'
+import { useState } from 'react'
import AlertsList from '../../../components/General/RightSideBar/AlertsList'
import LogsList from '../../../components/General/RightSideBar/LogsList'
-
-import { copyFunction, getFormattedWalletAddress } from '../../../utilities'
import ValidatorsTabs from '../../../components/General/RightSideBar/ValidatorsTabs/ValidatorsTabs'
import ValidatorsCount from '../../../components/General/RightSideBar/ValidatorsCount'
-
import NodesList from './NodesList'
import DiamondCard from './DiamondCard'
-import { useState } from 'react'
+import { copyFunction, getFormattedWalletAddress } from '../../../utilities'
-const DashboardSidebar = () => {
+const RightSidebar = () => {
const [isPopoverOpen, setIsPopoverOpen] = useState(false)
+ const address = '0xb9dc35'
+
const onCopyWalletAddress = () => {
- copyFunction('0xb9dc35')
+ copyFunction(address)
}
const handlePopoverOpenChange = (open: boolean) => {
@@ -52,7 +52,7 @@ const DashboardSidebar = () => {
Ethereum Mainnet
- {getFormattedWalletAddress('0xb9dc35')}
+ {getFormattedWalletAddress(address)}
{
)}
,
- ,
+ ,
]}
- >
-
-
-
+ />
+
{
borderRadius: '16px',
}}
>
-
+
Add Validator
-
@@ -114,4 +111,4 @@ const DashboardSidebar = () => {
)
}
-export default DashboardSidebar
+export default RightSidebar