Skip to content

Commit d9857b9

Browse files
committed
Property does not exist according to TS.
1 parent 558a2c3 commit d9857b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/react-async/src/globalScope.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ declare type GlobalScope = {
1313
const globalScope = (() => {
1414
if (typeof self === "object" && self.self === self) return self
1515
if (typeof global === "object" && global.global === global) return global
16-
if (typeof global === "object" && global.GLOBAL === global) return global
16+
if (typeof global === "object" && global["GLOBAL"] === global) return global
1717
return {} // fallback that relies on imported modules to be singletons
1818
})() as GlobalScope
1919

0 commit comments

Comments
 (0)