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 have "redux-auth": "0.0.5-beta5" in my package.json file and I try to use the component <EmailSignInForm /> from the default-theme.
default-theme.js is complaining because it doesn't find the module react-redux that is required in it. I can see that react-redux is only a devDependencies in your project.
If I installed react-redux manually, index.js is unable to resolve module querystring (there's a require("querystring") somewhere) but I see that your project uses the module query-string (notice the hyphen in the word that is different)
Maybe there's something wrong that I am doing? I thought that all those dependencies would be resolved by installing your project.
Thanks
The text was updated successfully, but these errors were encountered:
I have
"redux-auth": "0.0.5-beta5"
in mypackage.json
file and I try to use the component<EmailSignInForm />
from the default-theme.default-theme.js
is complaining because it doesn't find the module react-redux that is required in it. I can see that react-redux is only a devDependencies in your project.If I installed react-redux manually,
index.js
is unable to resolve module querystring (there's arequire("querystring")
somewhere) but I see that your project uses the module query-string (notice the hyphen in the word that is different)Maybe there's something wrong that I am doing? I thought that all those dependencies would be resolved by installing your project.
Thanks
The text was updated successfully, but these errors were encountered: