We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c81cd9f commit 41d1537Copy full SHA for 41d1537
src/projects/create/containers/CreateContainer.jsx
@@ -182,6 +182,9 @@ class CreateConainer extends React.Component {
182
// compares updated product with previous product to know if user has updated the product
183
if (prevProduct !== product) {
184
if (product) {
185
+ // intentionally commented because now it should not be require as we handling all URL changes in onStepChange
186
+ // earlier we were not getting updated project in onStepChange handler, hence it was required here
187
+ // still leaving it here for next few release, in case we find any issue because of commenting this line
188
// browserHistory.push(NEW_PROJECT_PATH + '/' + product + window.location.search)
189
}
190
0 commit comments