diff options
Diffstat (limited to 'src/state/shell/onboarding.tsx')
-rw-r--r-- | src/state/shell/onboarding.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/state/shell/onboarding.tsx b/src/state/shell/onboarding.tsx index 9aad9953d..6b48f72ad 100644 --- a/src/state/shell/onboarding.tsx +++ b/src/state/shell/onboarding.tsx @@ -29,7 +29,9 @@ export type DispatchContext = (action: Action) => void const stateContext = React.createContext<StateContext>( compute(persisted.defaults.onboarding), ) +stateContext.displayName = 'OnboardingStateContext' const dispatchContext = React.createContext<DispatchContext>((_: Action) => {}) +dispatchContext.displayName = 'OnboardingDispatchContext' function reducer(state: StateContext, action: Action): StateContext { switch (action.type) { |