diff --git a/web/app/components/base/tooltip/index.tsx b/web/app/components/base/tooltip/index.tsx index 53f36be5fb..61e1754993 100644 --- a/web/app/components/base/tooltip/index.tsx +++ b/web/app/components/base/tooltip/index.tsx @@ -33,7 +33,7 @@ const Tooltip: FC = ({ noDecoration, offset, asChild = true, - needsDelay = false, + needsDelay = true, }) => { const [open, setOpen] = useState(false) const [isHoverPopup, { @@ -68,7 +68,7 @@ const Tooltip: FC = ({ setTimeout(() => { if (!isHoverPopupRef.current && !isHoverTriggerRef.current) setOpen(false) - }, 500) + }, 300) } else { setOpen(false)