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 6f0c15c..5c3489b 100644
--- a/src/lib/schemas.ts
+++ b/src/lib/schemas.ts
@@ -49,6 +49,7 @@ export const expenseFormSchema = z.object({
paidFor: z
.array(z.string())
.min(1, 'The expense must be paid for at least 1 participant.'),
+ isReimbursement: z.boolean(),
})
export type ExpenseFormValues = z.infer<typeof expenseFormSchema>