From 736b74a641c533da002c47c1b500d78342e12646 Mon Sep 17 00:00:00 2001 From: Chance Strickland Date: Wed, 13 Jul 2022 15:04:34 -0700 Subject: [PATCH] SVGSVGElement > SVGElement --- packages/tooltip/src/index.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/tooltip/src/index.tsx b/packages/tooltip/src/index.tsx index 7266a35ba..f94b21eb4 100644 --- a/packages/tooltip/src/index.tsx +++ b/packages/tooltip/src/index.tsx @@ -230,7 +230,7 @@ function clearContextId() { * * @param params */ -function useTooltip({ +function useTooltip({ id: idProp, onPointerEnter, onPointerMove, @@ -651,7 +651,7 @@ function useDisabledTriggerOnSafari({ }: { disabled: boolean | undefined; isVisible: boolean; - ref: React.RefObject; + ref: React.RefObject; }) { React.useEffect(() => { if ( @@ -758,7 +758,7 @@ function isTooltipVisible(id: string, initial?: boolean) { //////////////////////////////////////////////////////////////////////////////// // TYPES -interface TriggerParams { +interface TriggerParams { "aria-describedby"?: string | undefined; "data-state": string; "data-reach-tooltip-trigger": string;