Skip to content

Commit 276daaf

Browse files
committed
Remove cancelled status
1 parent 2c66e8b commit 276daaf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/types/src/todo.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { z } from "zod"
33
/**
44
* TodoStatus
55
*/
6-
export const todoStatusSchema = z.enum(["pending", "in_progress", "completed", "cancelled"] as const)
6+
export const todoStatusSchema = z.enum(["pending", "in_progress", "completed"] as const)
77

88
export type TodoStatus = z.infer<typeof todoStatusSchema>
99

0 commit comments

Comments
 (0)