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/Select/index.tsx | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/components/Select/index.tsx') diff --git a/src/components/Select/index.tsx b/src/components/Select/index.tsx index 4e8e53216..82520f12a 100644 --- a/src/components/Select/index.tsx +++ b/src/components/Select/index.tsx @@ -34,10 +34,12 @@ type ContextType = { } & Pick const Context = createContext(null) +Context.displayName = 'SelectContext' const ValueTextContext = createContext< [any, React.Dispatch>] >([undefined, () => {}]) +ValueTextContext.displayName = 'ValueTextContext' function useSelectContext() { const ctx = useContext(Context) @@ -229,6 +231,7 @@ const ItemContext = createContext<{ focused: false, pressed: false, }) +ItemContext.displayName = 'SelectItemContext' export function useItemContext() { return useContext(ItemContext) -- cgit 1.4.1