Skip to content

Commit aea4b7b

Browse files
committed
fix update
1 parent c10c39d commit aea4b7b

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

netlify.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[build]
22
base = "portfoliocms.client"
3-
command = "npm run build"
3+
command = "npm run build -- --no-turbopack"
44
publish = ".next"
55

66
[[plugins]]

portfoliocms.client/app/(auth)/login/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import * as z from "zod";
88
import Link from "next/link";
99

1010
const loginSchema = z.object({
11-
email: z.string().email("Please enter a valid email address."),
11+
email: z.email("Please enter a valid email address."),
1212
password: z.string().min(8, "Password must be at least 8 characters."),
1313
});
1414

0 commit comments

Comments
 (0)