From ede2fc0645a17866c83bf85684cba45905f709cd Mon Sep 17 00:00:00 2001 From: dahoud Date: Thu, 2 Oct 2025 00:31:43 +0000 Subject: [PATCH] fix: Fix all newline escapes in attributions page --- app/(main)/admin/attributions/page.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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}