From c81aa66d371335870490c14b0f9b0265182fa479 Mon Sep 17 00:00:00 2001 From: Charlie Lamb Date: Thu, 22 Jan 2026 13:41:50 +0000 Subject: [PATCH] chore: fix zod error --- vite/src/views/auth/SignIn.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vite/src/views/auth/SignIn.tsx b/vite/src/views/auth/SignIn.tsx index 804049cbc..c50048475 100644 --- a/vite/src/views/auth/SignIn.tsx +++ b/vite/src/views/auth/SignIn.tsx @@ -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("");