fix invalid datetime error on team create

This commit is contained in:
2025-05-18 21:10:55 +02:00
parent 0ff3b817d8
commit 560bf04b6c
3 changed files with 6 additions and 6 deletions

View File

@ -9,7 +9,7 @@ export const team = {
input: z.object({
name: z.string(),
color: z.string(),
lastJoined: z.string().datetime().nullable(),
lastJoined: z.string().datetime({ local: true }).nullable(),
memberOne: z.object({
id: z.number().nullish(),
username: z.string()