From fecc1f8a81d30fea08b673b1ac51f6d2f17996e8 Mon Sep 17 00:00:00 2001 From: xavier jouppe Date: Thu, 16 May 2024 11:08:13 +0200 Subject: [PATCH] fix: remove link in tooltip --- components-ui/faq-link/index.tsx | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/components-ui/faq-link/index.tsx b/components-ui/faq-link/index.tsx index 326604fb0..cbd4e0bde 100644 --- a/components-ui/faq-link/index.tsx +++ b/components-ui/faq-link/index.tsx @@ -8,18 +8,7 @@ const FAQLink: React.FC< PropsWithChildren<{ tooltipLabel: string; to?: string }> > = ({ to, tooltipLabel, children }) => ( - {children} - {to ? ( -
- - → en savoir plus - -
- ) : null} - - } + label={children} tabIndex={to ? undefined : 0} orientation="left" width={230}