We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d14cdcb commit 52a16e3Copy full SHA for 52a16e3
src/hooks/useStore.ts
@@ -24,7 +24,8 @@ export function createStoreHook<
24
// @ts-ignore
25
context === ReactReduxContext
26
? useDefaultReduxContext
27
- : createReduxContextHook(context)
+ : // @ts-ignore
28
+ createReduxContextHook(context)
29
return function useStore<
30
State = S,
31
Action extends BasicAction = A
0 commit comments