From b2c56cbd6dfa9af576f947dd41a0d33376b184d1 Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Thu, 14 Aug 2025 01:12:31 +0300 Subject: Add displayName to contexts (#8814) --- src/components/Tooltip/index.tsx | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/components/Tooltip/index.tsx') diff --git a/src/components/Tooltip/index.tsx b/src/components/Tooltip/index.tsx index fbdb969db..a7d151020 100644 --- a/src/components/Tooltip/index.tsx +++ b/src/components/Tooltip/index.tsx @@ -53,12 +53,14 @@ const TooltipContext = createContext({ visible: false, onVisibleChange: () => {}, }) +TooltipContext.displayName = 'TooltipContext' const TargetContext = createContext({ targetMeasurements: undefined, setTargetMeasurements: () => {}, shouldMeasure: false, }) +TargetContext.displayName = 'TargetContext' export function Outer({ children, -- cgit 1.4.1