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/shell/logged-out.tsx | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/state/shell/logged-out.tsx') diff --git a/src/state/shell/logged-out.tsx b/src/state/shell/logged-out.tsx index 66240f2c0..3617a1eca 100644 --- a/src/state/shell/logged-out.tsx +++ b/src/state/shell/logged-out.tsx @@ -39,12 +39,14 @@ const StateContext = React.createContext({ showLoggedOut: false, requestedAccountSwitchTo: undefined, }) +StateContext.displayName = 'LoggedOutStateContext' const ControlsContext = React.createContext({ setShowLoggedOut: () => {}, requestSwitchToAccount: () => {}, clearRequestedAccount: () => {}, }) +ControlsContext.displayName = 'LoggedOutControlsContext' export function Provider({children}: React.PropsWithChildren<{}>) { const activeStarterPack = useActiveStarterPack() -- cgit 1.4.1