@codecademy/gamut

68.2.268.2.3-alpha.809fdd.0
dist/Tip/shared/FloatingTip.js
~dist/Tip/shared/FloatingTip.jsModified
+2−2
Index: package/dist/Tip/shared/FloatingTip.js
===================================================================
--- package/dist/Tip/shared/FloatingTip.js
+++ package/dist/Tip/shared/FloatingTip.js
@@ -28,10 +28,10 @@
   const [isOpen, setIsOpen] = useState(false);
   const [isFocused, setIsFocused] = useState(false);
 
   // Use refs to store timeouts to prevent race conditions
-  const hoverDelayRef = useRef();
-  const focusDelayRef = useRef();
+  const hoverDelayRef = useRef(undefined);
+  const focusDelayRef = useRef(undefined);
   const commonPopoverProps = getPopoverAlignmentAndPattern({
     alignment,
     type
   });