diff --git a/src/components/auth/LoginPage.tsx b/src/components/auth/LoginPage.tsx index 6f5ffb56..41e55819 100644 --- a/src/components/auth/LoginPage.tsx +++ b/src/components/auth/LoginPage.tsx @@ -24,8 +24,8 @@ export function LoginPage() { const t = useTranslations('auth'); const tCommon = useTranslations('common'); const tValidation = useTranslations('validation'); - const [userId, setUserId] = useState("TestUser5"); - const [password, setPassword] = useState("password123!"); + const [userId, setUserId] = useState(""); + const [password, setPassword] = useState(""); const [showPassword, setShowPassword] = useState(false); const [rememberMe, setRememberMe] = useState(false); const [error, setError] = useState("");