diff --git a/frontend/web/components/Tooltip.tsx b/frontend/web/components/Tooltip.tsx index 6897a600204c..fd7db72859b1 100644 --- a/frontend/web/components/Tooltip.tsx +++ b/frontend/web/components/Tooltip.tsx @@ -60,15 +60,18 @@ const Tooltip = ({ ) : ( )} - - {tooltipStyler(plainText, children, noIcon)} - + {!!children && ( + + {tooltipStyler(plainText, children, noIcon)} + + )} + ) }