about summary refs log tree commit diff
path: root/src/state/preferences/used-starter-packs.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/state/preferences/used-starter-packs.tsx')
-rw-r--r--src/state/preferences/used-starter-packs.tsx2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/state/preferences/used-starter-packs.tsx b/src/state/preferences/used-starter-packs.tsx
index e4de479d5..302b0e1f4 100644
--- a/src/state/preferences/used-starter-packs.tsx
+++ b/src/state/preferences/used-starter-packs.tsx
@@ -6,7 +6,9 @@ type StateContext = boolean | undefined
 type SetContext = (v: boolean) => void
 
 const stateContext = React.createContext<StateContext>(false)
+stateContext.displayName = 'UsedStarterPacksStateContext'
 const setContext = React.createContext<SetContext>((_: boolean) => {})
+setContext.displayName = 'UsedStarterPacksSetContext'
 
 export function Provider({children}: {children: React.ReactNode}) {
   const [state, setState] = React.useState<StateContext>(() =>