Document route order

This commit is contained in:
Kimmo Puputti 2017-10-06 15:11:11 +03:00
parent 4877c7ebcf
commit 57e4cf2b68

View file

@ -112,6 +112,9 @@ const routesConfiguration = [
component: props => <EditListingPage {...props} />,
loadData: (params, search) => EditListingPage.loadData(params, search),
},
// Canonical path should be after the `/l/new` path since they
// conflict and `new` is not a valid listing UUID.
{
path: '/l/:id',
exact: true,