feat(MED-97): fix occurance->occurrence in components, add missing translations

This commit is contained in:
2025-09-23 19:59:51 +03:00
parent 8af2c8710f
commit fb03d548af
11 changed files with 40 additions and 20 deletions

View File

@@ -1,9 +1,9 @@
import { z } from 'zod';
export const UpdateHealthBenefitSchema = z.object({
occurance: z
occurrence: z
.string({
error: 'Occurance is required',
error: 'Occurrence is required',
})
.nonempty(),
amount: z.number({ error: 'Amount is required' }),