aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/schemas.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/schemas.ts')
-rw-r--r--src/lib/schemas.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/schemas.ts b/src/lib/schemas.ts
index 9b7d428..14b253c 100644
--- a/src/lib/schemas.ts
+++ b/src/lib/schemas.ts
@@ -41,6 +41,7 @@ export type GroupFormValues = z.infer<typeof groupFormSchema>
export const expenseFormSchema = z
.object({
+ expenseDate: z.coerce.date(),
title: z
.string({ required_error: 'Please enter a title.' })
.min(2, 'Enter at least two characters.'),