chore: fix zod error

This commit is contained in:
Charlie Lamb
2026-01-22 13:41:50 +00:00
parent 94f3394122
commit c81aa66d37

View File

@@ -13,7 +13,7 @@ import { authClient, signIn } from "@/lib/auth-client";
import { getBackendErr } from "@/utils/genUtils";
import { OTPSignIn } from "./components/OTPSignIn";
export const emailSchema = z.email();
export const emailSchema = z.string().email();
export const SignIn = () => {
const [email, setEmail] = useState("");