diff --git a/packages/app/src/app/(default)/index-egapro/declaration/(remunerations)/RemunerationGenericForm.tsx b/packages/app/src/app/(default)/index-egapro/declaration/(remunerations)/RemunerationGenericForm.tsx index 39306eb96..b48b0b236 100644 --- a/packages/app/src/app/(default)/index-egapro/declaration/(remunerations)/RemunerationGenericForm.tsx +++ b/packages/app/src/app/(default)/index-egapro/declaration/(remunerations)/RemunerationGenericForm.tsx @@ -60,7 +60,7 @@ const notFilled = (catégories: FormType["catégories"]) => // Infer the TS type according to the zod schema. type FormType = z.infer; -type NumberOrEmptyString = number | ""; +type NumberOrEmptyString = z.infer; const defaultTranch = { ":29": "" as NumberOrEmptyString, @@ -113,7 +113,7 @@ export const RemunerationGenericForm = ({ mode }: { mode: Remunerations["mode"] append, remove, } = useFieldArray({ - control, // control props comes from useForm (optional: if you are using FormContext) + control, name: "catégories", rules: { minLength: 1, @@ -136,63 +136,64 @@ export const RemunerationGenericForm = ({ mode }: { mode: Remunerations["mode"]
- {catégories.map((catégorie, index) => ( -
-
- {/* Name of catégorie doesn't matter when mode is coef, so don't bother with inconsistent name between storage & UI */} - - {mode === "csp" - ? new CSP(catégorie.nom as CSP.Enum).getLabel() - : `Niveau ou coefficient ${index + 1}`} - - {mode !== "csp" && ( - - )} -
-
- - - - - - - - - - - - - {[ - AgeRange.Enum.LESS_THAN_30, - AgeRange.Enum.FROM_30_TO_39, - AgeRange.Enum.FROM_40_TO_49, - AgeRange.Enum.FROM_50_TO_MORE, - ].map(key => ( - - ))} - - -
Tableau des rémunérations
Moins de 30 ansDe 30 à 39 ansDe 40 à 49 ans50 ans et plus
- - name={`catégories.${index}.tranches.${key}`} /> -
+ + {catégories.map((catégorie, index) => ( +
+
+ {/* Name of catégorie doesn't matter when mode is coef, so don't bother with inconsistent name between storage & UI */} + + {mode === "csp" + ? new CSP(catégorie.nom as CSP.Enum).getLabel() + : `Niveau ou coefficient ${index + 1}`} + + {mode !== "csp" && ( + + )} +
+
+ + + + + + + + + + + + + {[ + AgeRange.Enum.LESS_THAN_30, + AgeRange.Enum.FROM_30_TO_39, + AgeRange.Enum.FROM_40_TO_49, + AgeRange.Enum.FROM_50_TO_MORE, + ].map(key => ( + + ))} + + +
Tableau des rémunérations
Moins de 30 ansDe 30 à 39 ansDe 40 à 49 ans50 ans et plus
+ + name={`catégories.${index}.tranches.${key}`} /> +
+
-
- ))} + ))} +
{mode !== "csp" && (