Skip to content

Commit

Permalink
fix: firefox problems
Browse files Browse the repository at this point in the history
  • Loading branch information
jonat75 committed Mar 12, 2024
1 parent 50a0e42 commit 972d642
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions packages/app/src/common/core-domain/dtos/CreateSimulationDTO.ts
Original file line number Diff line number Diff line change
Expand Up @@ -147,10 +147,16 @@ export const createSteps = {
zodFr.nativeEnum(AgeRange.Enum),
zodFr.object({
womenSalary: zodFr
.number({ invalid_type_error: "Le champ est requis" })
.number({
invalid_type_error: "Le champs doit être un nombre",
required_error: "Le champ est requis",
})
.positive("La rémunération ne peut pas être inférieure ou égale à 0"),
menSalary: zodFr
.number({ invalid_type_error: "Le champ est requis" })
.number({
invalid_type_error: "Le champs doit être un nombre",
required_error: "Le champ est requis",
})
.positive("La rémunération ne peut pas être inférieure ou égale à 0"),
}),
)
Expand Down

0 comments on commit 972d642

Please sign in to comment.