From 008f92ffe3cf94ec9dba26b71c7d5317a4b04423 Mon Sep 17 00:00:00 2001 From: fish Date: Mon, 6 Jul 2026 15:45:29 +0800 Subject: [PATCH] =?UTF-8?q?=E7=99=BB=E5=BD=95=E9=A1=B5=E8=B4=A6=E5=8F=B7?= =?UTF-8?q?=E8=BE=93=E5=85=A5=E6=A1=86=E9=BB=98=E8=AE=A4=E6=94=B9=E4=B8=BA?= =?UTF-8?q?=E7=A9=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude --- serve/frontend/src/pages/Auth.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/serve/frontend/src/pages/Auth.tsx b/serve/frontend/src/pages/Auth.tsx index b43a6c0..4f31a1a 100644 --- a/serve/frontend/src/pages/Auth.tsx +++ b/serve/frontend/src/pages/Auth.tsx @@ -20,7 +20,7 @@ import { cn } from '@/lib/cn' export function Auth() { const navigate = useNavigate() - const [username, setUsername] = useState('admin') + const [username, setUsername] = useState('') const [password, setPassword] = useState('') const [confirmPassword, setConfirmPassword] = useState('') // 仅设密码时用 const [showPwd, setShowPwd] = useState(false)