From 7cfaacc833a63bfc0092f97e711fb521382c7946 Mon Sep 17 00:00:00 2001 From: hailin Date: Sun, 28 Dec 2025 07:50:15 -0800 Subject: [PATCH] =?UTF-8?q?fix(service-party-app):=20=E4=BF=AE=E6=94=B9?= =?UTF-8?q?=E9=BB=98=E8=AE=A4=E9=98=88=E5=80=BC=E4=B8=BA=203-of-5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .../services/service-party-app/src/pages/Create.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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);