We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
isLoading from redux bug causes looping of the render component in v4.0.0
The text was updated successfully, but these errors were encountered:
Any other debugging info?
Sorry, something went wrong.
Yes. Clone this project https://gitlab.com/yura1994hd/middle/tree/bug_react-universal-coponent. Checout on bug_react-universal-coponent and npm run start:dev:local. After run uncomment code \src\containers\Routes\index.js and reload page http://localhost/basket
It seems I found the reason. What seems to me to be the fault of the react-router
Good work: <Route exact path={constants.PATCH_URL_BASKET} component={Basket} /> Looping: <Route exact path={constants.PATCH_URL_BASKET} component={props => <Basket {...props} />} />
<Route exact path={constants.PATCH_URL_BASKET} component={Basket} />
<Route exact path={constants.PATCH_URL_BASKET} component={props => <Basket {...props} />} />
No branches or pull requests
isLoading from redux bug causes looping of the render component in v4.0.0
![default](https://user-images.githubusercontent.com/23016311/53700489-8a6d1100-3dfb-11e9-92d9-a24f0df7aa63.PNG)
The text was updated successfully, but these errors were encountered: