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
I'm encountering a runtime error when using the newest version of "@reduxjs/toolkit": "^2.4.0" in my React Native application. Downgrading to the previous stable version "@reduxjs/toolkit": "^2.3.0" resolves the issue.
If you look at that file it only contains require("redux") calls. Do you maybe have a redux folder in your app somewhere? That sometimes confuses bundlers to look for that folder instead of the package with the similar name.
Also, it seems very odd that this would only manifest in 2.4.0. We didn't change anything about the bundling or build setup in this release.
For that matter, it's very suspicious that the path shown includes ../src/redux. A node_modules import shouldn't end up pointing to anything with src in the path.
I'm encountering a runtime error when using the newest version of
"@reduxjs/toolkit": "^2.4.0"
in my React Native application. Downgrading to the previous stable version"@reduxjs/toolkit": "^2.3.0"
resolves the issue.Package versions:
Store Configuration file:
App Setup:
Temporary Solution:
Downgrading to
@reduxjs/toolkit": "^2.3.0"
resolves the issue.The text was updated successfully, but these errors were encountered: