diff --git a/backend/mpc-system/services/service-party-app/src/pages/Create.tsx b/backend/mpc-system/services/service-party-app/src/pages/Create.tsx index deed1ba6..22b8ff89 100644 --- a/backend/mpc-system/services/service-party-app/src/pages/Create.tsx +++ b/backend/mpc-system/services/service-party-app/src/pages/Create.tsx @@ -13,8 +13,8 @@ export default function Create() { const navigate = useNavigate(); const [walletName, setWalletName] = useState(''); - const [thresholdT, setThresholdT] = useState(2); - const [thresholdN, setThresholdN] = useState(3); + const [thresholdT, setThresholdT] = useState(3); + const [thresholdN, setThresholdN] = useState(5); const [participantName, setParticipantName] = useState(''); const [isLoading, setIsLoading] = useState(false); const [error, setError] = useState(null);