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/state/dialogs/index.tsx | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/state/dialogs/index.tsx') diff --git a/src/state/dialogs/index.tsx b/src/state/dialogs/index.tsx index 520fb2c84..51ca8b514 100644 --- a/src/state/dialogs/index.tsx +++ b/src/state/dialogs/index.tsx @@ -26,10 +26,12 @@ interface IDialogControlContext { } const DialogContext = React.createContext({} as IDialogContext) +DialogContext.displayName = 'DialogContext' const DialogControlContext = React.createContext( {} as IDialogControlContext, ) +DialogControlContext.displayName = 'DialogControlContext' /** * The number of dialogs that are fully expanded. This is used to determine the background color of the status bar @@ -107,3 +109,4 @@ export function Provider({children}: React.PropsWithChildren<{}>) { ) } +Provider.displayName = 'DialogsProvider' -- cgit 1.4.1