Skip to content

Commit

Permalink
🐛 Correction abandon sans recandidature (#2334)
Browse files Browse the repository at this point in the history
  • Loading branch information
benjlevesque authored Oct 17, 2024
1 parent e3088c4 commit f44737d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const abandonWithRecandidatureSchema = zod.object({

const abandonWithoutRecandidatureSchema = zod.object({
identifiantProjet: zod.string().min(1),
recandidature: zod.literal('false'),
recandidature: zod.literal('false').optional(),
raison: zod.string().min(1, { message: 'Champ obligatoire' }),
pieceJustificative: document,
});
Expand Down

0 comments on commit f44737d

Please sign in to comment.