From 32f60d91ec104f454279406f74c1aeb7c40ceee7 Mon Sep 17 00:00:00 2001 From: Chris Date: Mon, 23 Feb 2026 13:45:48 +0100 Subject: [PATCH 1/2] feat: enable max eb declare --- .../effective-balance/migration-effective-balance-form.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/effective-balance/migration-effective-balance-form.tsx b/src/components/effective-balance/migration-effective-balance-form.tsx index afe081056..5ed092e08 100644 --- a/src/components/effective-balance/migration-effective-balance-form.tsx +++ b/src/components/effective-balance/migration-effective-balance-form.tsx @@ -48,10 +48,10 @@ export const MigrationEffectiveBalanceForm: FC = ({ totalEffectiveBalance: z .number() .positive({ message: "Balance must be greater than 0" }) - .min(totalEffectiveBalance), - // .max(maxEffectiveBalance), + .min(totalEffectiveBalance) + .max(maxEffectiveBalance), }), - [totalEffectiveBalance], + [maxEffectiveBalance, totalEffectiveBalance], ); const form = useForm>({ From 2ebf6e83be75f931441715adad97c5f91b68d2be Mon Sep 17 00:00:00 2001 From: sumbat-ssvlabs Date: Mon, 23 Feb 2026 15:40:42 +0200 Subject: [PATCH 2/2] fix: sort operators 11340043008 (#1768) --- .../clusters/cluster/remove-validators-confirmation.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/routes/dashboard/clusters/cluster/remove-validators-confirmation.tsx b/src/app/routes/dashboard/clusters/cluster/remove-validators-confirmation.tsx index 00b926b32..4af7c4844 100644 --- a/src/app/routes/dashboard/clusters/cluster/remove-validators-confirmation.tsx +++ b/src/app/routes/dashboard/clusters/cluster/remove-validators-confirmation.tsx @@ -75,7 +75,7 @@ export const RemoveValidatorsConfirmation: FC = () => { { cluster: clusterData, publicKey: selectedPublicKeys[0] as Address, - operatorIds: operatorIds, + operatorIds, }, options, ); @@ -85,7 +85,7 @@ export const RemoveValidatorsConfirmation: FC = () => { { cluster: clusterData, publicKeys: selectedPublicKeys as Address[], - operatorIds: bigintifyNumbers(cluster.data?.operators ?? []), + operatorIds, }, options, );