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 downloaded react-starter-kit intl with upgraded version and i get error with route null.
I was using previus version with webpack v1.And there is working well!
As i test using keyword debugger the error happen in routes with children, because 1st it goes to this code
code 1st
async action({ next }) {
// Execute each child route until one of them return the result
const route = await next(); //null
// Provide default values for title, description etc.
route.title = `${route.title || 'Untitled Page'} - www.reactstarterkit.com`;
route.description = route.description || '';
return route;
},
I downloaded react-starter-kit intl with upgraded version and i get error with route null.
I was using previus version with webpack v1.And there is working well!
As i test using keyword debugger the error happen in routes with children, because 1st it goes to this code
and after that it goes here
but it should be backwards. code2nd -> code1st.
Am i missing something with this new version?
The text was updated successfully, but these errors were encountered: