fix invalid datetime error on team create
This commit is contained in:
@ -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()
|
||||
|
Reference in New Issue
Block a user