diff --git a/src/app/components/applications/SSV/MyAccount/components/Balance/Balance.tsx b/src/app/components/applications/SSV/MyAccount/components/Balance/Balance.tsx
index 10329047a..8609e9beb 100644
--- a/src/app/components/applications/SSV/MyAccount/components/Balance/Balance.tsx
+++ b/src/app/components/applications/SSV/MyAccount/components/Balance/Balance.tsx
@@ -18,11 +18,13 @@ const OperationRunwayWrapper = styled.div`
const Balance = ({
cluster,
moveToReactivateCluster,
+ hasPrivateOperators,
moveToDeposit,
moveToWithdraw
}: {
cluster: ICluster;
moveToReactivateCluster: Function;
+ hasPrivateOperators: boolean;
moveToDeposit: Function;
moveToWithdraw: Function;
}) => {
@@ -65,7 +67,7 @@ const Balance = ({
{cluster.isLiquidated ? (
-
+
) : (
diff --git a/src/app/components/applications/SSV/MyAccount/components/Validator/SingleCluster/SingleCluster.tsx b/src/app/components/applications/SSV/MyAccount/components/Validator/SingleCluster/SingleCluster.tsx
index f5feb1279..c954ab887 100644
--- a/src/app/components/applications/SSV/MyAccount/components/Validator/SingleCluster/SingleCluster.tsx
+++ b/src/app/components/applications/SSV/MyAccount/components/Validator/SingleCluster/SingleCluster.tsx
@@ -115,7 +115,13 @@ const SingleCluster = () => {