diff --git a/nym-wallet/src/components/Bonding/BondedMixnode.tsx b/nym-wallet/src/components/Bonding/BondedMixnode.tsx
index 92b4bdb965..ae32fdefba 100644
--- a/nym-wallet/src/components/Bonding/BondedMixnode.tsx
+++ b/nym-wallet/src/components/Bonding/BondedMixnode.tsx
@@ -155,7 +155,11 @@ export const BondedMixnode = ({
{name}
)}
-
+
+
+
+
+
}
Action={
diff --git a/nym-wallet/src/components/IdentityKey.tsx b/nym-wallet/src/components/IdentityKey.tsx
index 372a6bf40d..acf4019ce7 100644
--- a/nym-wallet/src/components/IdentityKey.tsx
+++ b/nym-wallet/src/components/IdentityKey.tsx
@@ -3,13 +3,11 @@ import { Stack, Typography, Tooltip } from '@mui/material';
import { CopyToClipboard } from '@nymproject/react/clipboard/CopyToClipboard';
import { splice } from 'src/utils';
-export const IdentityKey = ({ identityKey, tooltipTitle }: { identityKey: string; tooltipTitle?: string }) => (
-
-
-
- {splice(6, identityKey)}
-
-
-
-
+export const IdentityKey = ({ identityKey }: { identityKey: string }) => (
+
+
+ {splice(6, identityKey)}
+
+
+
);