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.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/schemas.ts b/src/lib/schemas.ts
index 9c79355..0bebae6 100644
--- a/src/lib/schemas.ts
+++ b/src/lib/schemas.ts
@@ -66,7 +66,7 @@ export const expenseFormSchema = z.object({
paidBy: z.string({ required_error: 'You must select a participant.' }),
paidFor: z
.array(z.string())
- .min(1, 'The expense must be paid for at least 1 participant.'),
+ .min(1, 'The expense must be paid for at least one participant.'),
isReimbursement: z.boolean(),
})