diff --git a/src/components/Tooltip/EducationalTooltip/TooltipManager.ts b/src/components/Tooltip/EducationalTooltip/TooltipManager.ts index 2c960922f948..bc5547a520b5 100644 --- a/src/components/Tooltip/EducationalTooltip/TooltipManager.ts +++ b/src/components/Tooltip/EducationalTooltip/TooltipManager.ts @@ -2,6 +2,7 @@ // We're using the timeout because when a tooltip is used inside an animated view (e.g., popover), // we need to wait for the animation to finish before measuring content. const pendingTooltips = new Set(); + // We store the callback for closing a tooltip here. const activeTooltips = new Set<() => void>();