diff --git a/app/(main)/admin/attributions/page.tsx b/app/(main)/admin/attributions/page.tsx index 8b19420..a6ff780 100644 --- a/app/(main)/admin/attributions/page.tsx +++ b/app/(main)/admin/attributions/page.tsx @@ -339,7 +339,8 @@ const AttributionsPage = () => { value={selectedGestionnairePrincipal} options={gestionnaires} onChange={(e) => setSelectedGestionnairePrincipal(e.value)} - optionLabel="nom"`n itemTemplate={(option) => option ? `${option.prenom} ${option.nom}` : ''} + optionLabel="nom" + itemTemplate={(option) => option ? `${option.prenom} ${option.nom}` : ''} placeholder="Sélectionnez un gestionnaire principal" showClear className="w-full" @@ -376,4 +377,4 @@ const AttributionsPage = () => { ); }; -export default AttributionsPage; \ No newline at end of file +export default AttributionsPage;