I used to do this in react router v5:
<Redirect exact from="/:org" to="/:org/users" />
translating it into this doesn't work:
<Route path="/:org" element={<Navigate replace to="/:org/users" />} />
What is the correct way to perform this kind of a redirect?
UPD: To clarify – I don't have a separate route for /:org/users at the same routes level but I have /:org/* route that handles /:org/users and others:
<Route path="/:org/*" element={<OrgPagesComponent />} />