about summary refs log tree commit diff
path: root/src/state/preferences/kawaii.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/state/preferences/kawaii.tsx')
-rw-r--r--src/state/preferences/kawaii.tsx1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/state/preferences/kawaii.tsx b/src/state/preferences/kawaii.tsx
index 421689164..1835e0359 100644
--- a/src/state/preferences/kawaii.tsx
+++ b/src/state/preferences/kawaii.tsx
@@ -8,6 +8,7 @@ type StateContext = persisted.Schema['kawaii']
 const stateContext = React.createContext<StateContext>(
   persisted.defaults.kawaii,
 )
+stateContext.displayName = 'KawaiiStateContext'
 
 export function Provider({children}: React.PropsWithChildren<{}>) {
   const [state, setState] = React.useState(persisted.get('kawaii'))