refactor: fix type errors

This commit is contained in:
Elias Schneider
2025-05-03 23:42:17 +02:00
parent 0b9cbf47e3
commit f4c6cff461
4 changed files with 6 additions and 6 deletions

View File

@@ -28,7 +28,7 @@
const formSchema = z.object({
firstName: z.string().min(1).max(50),
lastName: z.string().max(50),
lastName: z.string().max(50).optional(),
username: z
.string()
.min(2)