diff --git a/nym-wallet/src/components/Bonding/BondedMixnode.tsx b/nym-wallet/src/components/Bonding/BondedMixnode.tsx
index 199c8f5653..e569cd7aec 100644
--- a/nym-wallet/src/components/Bonding/BondedMixnode.tsx
+++ b/nym-wallet/src/components/Bonding/BondedMixnode.tsx
@@ -127,6 +127,7 @@ export const BondedMixnode = ({
),
id: 'actions-cell',
diff --git a/nym-wallet/src/components/VestingWarningModal/index.tsx b/nym-wallet/src/components/VestingWarningModal/index.tsx
index a594ad25b2..58fc4d30b4 100644
--- a/nym-wallet/src/components/VestingWarningModal/index.tsx
+++ b/nym-wallet/src/components/VestingWarningModal/index.tsx
@@ -9,8 +9,9 @@ import DialogTitle from '@mui/material/DialogTitle';
export const VestingWarningModal: FC<{
kind: 'delegations' | 'bond';
isVisible: boolean;
- handleClose: (result: 'yes' | 'no') => void;
-}> = ({ kind, isVisible, handleClose }) => (
+ handleClose: () => void;
+ handleMigrate: () => Promise;
+}> = ({ kind, isVisible, handleClose, handleMigrate }) => (