diff --git a/frontend/src/components/TextToolTip/index.tsx b/frontend/src/components/TextToolTip/index.tsx index 39ce9072eb..70e5c04685 100644 --- a/frontend/src/components/TextToolTip/index.tsx +++ b/frontend/src/components/TextToolTip/index.tsx @@ -18,12 +18,24 @@ function TextToolTip({ }: TextToolTipProps): JSX.Element { const isDarkMode = useIsDarkMode(); + const onClickHandler = ( + event: React.MouseEvent, + ): void => { + event.stopPropagation(); + }; + const overlay = useMemo( () => (
{`${text} `} {url && ( - + {urlText || 'here'} )}