diff --git a/app/(main)/admin/attributions/page.tsx b/app/(main)/admin/attributions/page.tsx index a6ff780..61a51f0 100644 --- a/app/(main)/admin/attributions/page.tsx +++ b/app/(main)/admin/attributions/page.tsx @@ -359,7 +359,8 @@ const AttributionsPage = () => { value={selectedGestionnairesSecondaires} options={gestionnaires.filter(g => g.id !== selectedGestionnairePrincipal?.id)} onChange={(e) => setSelectedGestionnairesSecondaires(e.value)} - optionLabel="nom"`n itemTemplate={(option) => option ? `${option.prenom} ${option.nom}` : ''} + optionLabel="nom" + itemTemplate={(option) => option ? `${option.prenom} ${option.nom}` : ''} placeholder="Sélectionnez des gestionnaires secondaires" className="w-full" maxSelectedLabels={3}