We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c66e8b commit 276daafCopy full SHA for 276daaf
packages/types/src/todo.ts
@@ -3,7 +3,7 @@ import { z } from "zod"
3
/**
4
* TodoStatus
5
*/
6
-export const todoStatusSchema = z.enum(["pending", "in_progress", "completed", "cancelled"] as const)
+export const todoStatusSchema = z.enum(["pending", "in_progress", "completed"] as const)
7
8
export type TodoStatus = z.infer<typeof todoStatusSchema>
9
0 commit comments