corrected schemas

This commit is contained in:
2024-11-22 23:26:51 -06:00
parent e396ad5f54
commit ef96bf448d
2 changed files with 10 additions and 5 deletions

View File

@@ -2,4 +2,4 @@ import { z } from "zod";
export const taskCreationFormSchema = z.object({});
export type TaskCreation = z.infer<typeof taskCreationFormSchema>;
export type TaskCreationSchema = z.infer<typeof taskCreationFormSchema>;