https://localhost:3000/developers/developer/51/users this routes correctly https://localhost:3000/developers/developer/51?crudMode=view/users this doesn't work
the difference is that the second URL has a query parameter ?cruMode=view .. but i would assume this should't affect the routing in the grand of things because / is the main indicator in separating the routes. Here is my route config:
{
path: "developers",
element: <DeveloperListPage />,
children: [
{
path: "developer/:id",
element: <DeveloperPage />,
children: [{ path: "users", element: <UserListPage /> }],
},
],
}
How would i go about making the route work while with query parameters embedded in between? Been scratching my head for days.