diff --git a/src/routes/safe/components/Settings/ManageOwners/RemoveOwnerModal/screens/ThresholdForm/index.tsx b/src/routes/safe/components/Settings/ManageOwners/RemoveOwnerModal/screens/ThresholdForm/index.tsx index 35ba5eea..cd1bc8d3 100644 --- a/src/routes/safe/components/Settings/ManageOwners/RemoveOwnerModal/screens/ThresholdForm/index.tsx +++ b/src/routes/safe/components/Settings/ManageOwners/RemoveOwnerModal/screens/ThresholdForm/index.tsx @@ -39,7 +39,8 @@ export const ThresholdForm = ({ onClickBack, onClose, onSubmit, initialValues }: const handleSubmit = (values) => { onSubmit(values) } - const defaultThreshold = threshold > 1 ? threshold - 1 : threshold + const ownersAmount = owners?.size + const defaultThreshold = threshold > 1 && threshold === ownersAmount ? threshold - 1 : threshold return ( <>