From 6843c93a86398ab8ef8cc5eff337547bc4bb8545 Mon Sep 17 00:00:00 2001 From: SkywalkerJi Date: Fri, 31 Oct 2025 18:30:36 +0800 Subject: [PATCH 1/2] Ignore the database to avoid submitting sensitive data. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index d501f8dd..4dc2afc9 100644 --- a/.gitignore +++ b/.gitignore @@ -26,6 +26,7 @@ Thumbs.db # 环境变量 .env config.json +config.db # 决策日志 decision_logs/ From e75c8343727deb7c31d601357231c35b603e7a33 Mon Sep 17 00:00:00 2001 From: SkywalkerJi Date: Fri, 31 Oct 2025 18:34:48 +0800 Subject: [PATCH 2/2] Change the minimum amount to 50 and remove the maximum amount limit. --- web/src/components/AITradersPage.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/web/src/components/AITradersPage.tsx b/web/src/components/AITradersPage.tsx index b42a79bd..456c7404 100644 --- a/web/src/components/AITradersPage.tsx +++ b/web/src/components/AITradersPage.tsx @@ -758,8 +758,7 @@ function CreateTraderModal({ type="number" value={initialBalance} onChange={(e) => setInitialBalance(Number(e.target.value))} - min="100" - max="100000" + min="50" className="w-full px-3 py-2 rounded" style={{ background: '#0B0E11', border: '1px solid #2B3139', color: '#EAECEF' }} required