Skip to content

Commit

Permalink
fix(admin): forbidden export in next page
Browse files Browse the repository at this point in the history
  • Loading branch information
agarbe committed Nov 22, 2024
1 parent c50aa2b commit 21bcacb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ type StructureForPage = Exclude<
undefined
>;

export const certificationStructureFormSchema = z.object({
const certificationStructureFormSchema = z.object({
certificationAuthorityStructureId: z
.string()
.min(1, "Merci de remplir ce champ")
.default(""),
});

export type CertificationStructureFormData = z.infer<
type CertificationStructureFormData = z.infer<
typeof certificationStructureFormSchema
>;

Expand Down

0 comments on commit 21bcacb

Please sign in to comment.