From 93c7db8d9f2198e5e20f3a1629638a2f7acdcbf8 Mon Sep 17 00:00:00 2001 From: Arya Emami Date: Tue, 13 Aug 2024 01:12:47 -0500 Subject: [PATCH] Fix imports in `Context.ts` --- src/components/Context.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Context.ts b/src/components/Context.ts index 01f502b80..32454d198 100644 --- a/src/components/Context.ts +++ b/src/components/Context.ts @@ -1,6 +1,6 @@ import type { Context } from 'react' -import type { Action, Store, UnknownAction } from 'redux' import { React } from '../utils/react' +import type { Action, Store, UnknownAction } from 'redux' import type { Subscription } from '../utils/Subscription' import type { ProviderProps } from './Provider'