Skip to content

Commit 7e751b8

Browse files
Make workflow description nullable
1 parent 7f24ae1 commit 7e751b8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/sim/lib/api/contracts/workflows.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ export const workflowStateSchema = z.object({
166166
metadata: z
167167
.object({
168168
name: z.string().optional(),
169-
description: z.string().optional(),
169+
description: z.string().nullable().optional(),
170170
})
171171
.optional(),
172172
})

0 commit comments

Comments
 (0)