diff options
Diffstat (limited to 'src/components/Select/index.web.tsx')
-rw-r--r-- | src/components/Select/index.web.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/components/Select/index.web.tsx b/src/components/Select/index.web.tsx index 324148683..4e92d3c51 100644 --- a/src/components/Select/index.web.tsx +++ b/src/components/Select/index.web.tsx @@ -23,6 +23,7 @@ import { } from './types' const SelectedValueContext = createContext<string | undefined | null>(null) +SelectedValueContext.displayName = 'SelectSelectedValueContext' export function Root(props: RootProps) { return ( @@ -219,6 +220,7 @@ const ItemContext = createContext<{ pressed: false, selected: false, }) +ItemContext.displayName = 'SelectItemContext' export function useItemContext() { return useContext(ItemContext) |