chore(auth): remove default credentials from login and register forms

This commit is contained in:
Mauricio Siu
2025-03-01 23:09:43 -06:00
parent eed38860b9
commit 948fdbc22b
2 changed files with 6 additions and 6 deletions

View File

@@ -67,8 +67,8 @@ export default function Home({ IS_CLOUD }: Props) {
const loginForm = useForm<LoginForm>({
resolver: zodResolver(LoginSchema),
defaultValues: {
email: "siumauricio@hotmail.com",
password: "Password123",
email: "",
password: "",
},
});

View File

@@ -78,10 +78,10 @@ const Register = ({ isCloud }: Props) => {
const form = useForm<Register>({
defaultValues: {
name: "Mauricio Siu",
email: "user5@yopmail.com",
password: "Password123",
confirmPassword: "Password123",
name: "",
email: "",
password: "",
confirmPassword: "",
},
resolver: zodResolver(registerSchema),
});