From 9e09869307f829273d8a38a452d814a546b692b0 Mon Sep 17 00:00:00 2001 From: Oliver Joseph Ash Date: Thu, 6 Oct 2022 16:34:13 +0100 Subject: [PATCH] `any` -> `unknown` --- src/components/Provider.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Provider.tsx b/src/components/Provider.tsx index e3340355d..f3ffb2da1 100644 --- a/src/components/Provider.tsx +++ b/src/components/Provider.tsx @@ -4,7 +4,7 @@ import { createSubscription } from '../utils/Subscription' import { useIsomorphicLayoutEffect } from '../utils/useIsomorphicLayoutEffect' import { Action, AnyAction, Store } from 'redux' -export interface ProviderProps { +export interface ProviderProps { /** * The single Redux store in your application. */ @@ -24,7 +24,7 @@ export interface ProviderProps { children: ReactNode } -function Provider({ +function Provider({ store, context, children,