fix: Upgrade popper, tippy to fix error (#4224)

* Upgrade popper, tippy to fix error

* tsc
This commit is contained in:
Tom Moor
2022-10-04 13:13:46 -04:00
committed by GitHub
parent db47b643be
commit 1a88cb9d08
5 changed files with 156 additions and 34 deletions

View File

@@ -7,7 +7,7 @@ type Props = {
};
const WrappedTooltip: React.FC<Props> = ({ children, tooltip }) => (
<Tooltip offset="0, 8" delay={150} tooltip={tooltip} placement="top">
<Tooltip offset={[0, 16]} delay={150} tooltip={tooltip} placement="top">
<TooltipContent>{children}</TooltipContent>
</Tooltip>
);