Skip to content

Commit b14e12a

Browse files
committed
Add @__PURE__ to ContextKey creation site
1 parent fd88816 commit b14e12a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/Context.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import type { Context } from 'react'
2-
import { React } from '../utils/react'
32
import type { Action, Store, UnknownAction } from 'redux'
3+
import { React } from '../utils/react'
44
import type { Subscription } from '../utils/Subscription'
55
import type { ProviderProps } from './Provider'
66

@@ -13,7 +13,7 @@ export interface ReactReduxContextValue<
1313
getServerState?: () => SS
1414
}
1515

16-
const ContextKey = Symbol.for(`react-redux-context`)
16+
const ContextKey = /* @__PURE__ */ Symbol.for(`react-redux-context`)
1717
const gT: {
1818
[ContextKey]?: Map<
1919
typeof React.createContext,

0 commit comments

Comments
 (0)