You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TypeError: Cannot read property 'make' of undefined
This is because it relies on undocumented internals of ReScript 11, specifically that Navigator and Screen are treated as reserved words and therefore prefixed with$$ in the JS output (but Group isn't).
In ReScript 12, this behavior changed with rescript-lang/rescript#6831, and Navigator and Screen are no longer prefixed.
The text was updated successfully, but these errors were encountered:
When compiled with ReScript 12, the current Interop for the navigator modules as implemented in
rescript-react-navigation/src/Interop.js
Line 4 in 52f4127
This is because it relies on undocumented internals of ReScript 11, specifically that
Navigator
andScreen
are treated as reserved words and therefore prefixed with$$
in the JS output (butGroup
isn't).In ReScript 12, this behavior changed with rescript-lang/rescript#6831, and
Navigator
andScreen
are no longer prefixed.The text was updated successfully, but these errors were encountered: