diff --git a/frontend/src/types/schemas.ts b/frontend/src/types/schemas.ts index e59bf1346..d63020b95 100644 --- a/frontend/src/types/schemas.ts +++ b/frontend/src/types/schemas.ts @@ -5,7 +5,7 @@ export const actionResponseSchema = z.object({ title: z.string(), description: z.string(), status: z.string(), - inputs: z.record(z.any()).optional(), + inputs: z.record(z.any()).nullable(), }) export type ActionResponse = z.infer