Skip to content

Commit 7dfc6bb

Browse files
committed
fix tooltip duration
Signed-off-by: FaheemOnHub <[email protected]>
1 parent 0ca36d8 commit 7dfc6bb

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/custom/CustomTooltip/customTooltip.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,9 @@ function CustomTooltip({
2929
}: CustomTooltipProps): JSX.Element {
3030
return (
3131
<Tooltip
32-
enterTouchDelay={0}
33-
leaveTouchDelay={2000}
32+
enterDelay={150}
33+
enterNextDelay={400} //->delay when moving between siblings
34+
leaveDelay={700}
3435
componentsProps={_.merge(
3536
{
3637
tooltip: {

0 commit comments

Comments
 (0)