diff options
Diffstat (limited to 'src/state/shell/starter-pack.tsx')
-rw-r--r-- | src/state/shell/starter-pack.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/state/shell/starter-pack.tsx b/src/state/shell/starter-pack.tsx index f564712f0..8da2bcc5c 100644 --- a/src/state/shell/starter-pack.tsx +++ b/src/state/shell/starter-pack.tsx @@ -9,7 +9,9 @@ type StateContext = type SetContext = (v: StateContext) => void const stateContext = React.createContext<StateContext>(undefined) +stateContext.displayName = 'ActiveStarterPackStateContext' const setContext = React.createContext<SetContext>((_: StateContext) => {}) +setContext.displayName = 'ActiveStarterPackSetContext' export function Provider({children}: {children: React.ReactNode}) { const [state, setState] = React.useState<StateContext>() |