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
Somewhere in this codebase, it's assuming that the browser has ES6 Proxy available. This language feature is newer and therefore leaves older browsers out of luck. We need to do all we can to support older browsers over at Everipedia, so collaborating to replace this language feature with something legacy-compatible would enable more folks to use Scatter 🙌
Triage
In this repository, here are all the occurrences of new Proxy:
You should include proxy-polyfill into your build system (just require it directly, it doesn't export anything), or import the proxy.min.js file directly.
See this Sentry public error here
Description
Somewhere in this codebase, it's assuming that the browser has ES6 Proxy available. This language feature is newer and therefore leaves older browsers out of luck. We need to do all we can to support older browsers over at Everipedia, so collaborating to replace this language feature with something legacy-compatible would enable more folks to use Scatter 🙌
Triage
In this repository, here are all the occurrences of
new Proxy
:Proposed Fix
From Google's polyfill:
The text was updated successfully, but these errors were encountered: