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
#66 introduces errors on accessing state in untracked react components in v4.
It's makes switching to v4 difficult for large teams because of the errors amount.
Make it configurable (turned off by default for now) to allow gradually fixing those errors.
Something like:
import*asremxfrom'remx';// remx shouldn't trigger error // “[REMX] attemted to access prop 'xxx' in react component untracked by remx”// until this line:remx.enableAccessStateStrictMode(true);// We should be able to turn it off as well:remx.enableAccessStateStrictMode(false);
The text was updated successfully, but these errors were encountered:
#66 introduces errors on accessing state in untracked react components in v4.
It's makes switching to v4 difficult for large teams because of the errors amount.
Make it configurable (turned off by default for now) to allow gradually fixing those errors.
Something like:
The text was updated successfully, but these errors were encountered: