diff --git a/copilot-ui/src/components/Login.tsx b/copilot-ui/src/components/Login.tsx
index 51c3bdab..4f05bda9 100644
--- a/copilot-ui/src/components/Login.tsx
+++ b/copilot-ui/src/components/Login.tsx
@@ -23,7 +23,7 @@ import { LANGUAGES } from "../constants";
const formSchema = z.object({
email: z.string().min(2, {
- message: "Email must be at least 2 characters.",
+ message: "Username must be at least 2 characters.",
}),
password: z.string().min(2, {
message: "Password must be at least 2 characters.",
@@ -95,7 +95,7 @@ export function Login() {