### What version of React Router are you using? 6.2.1 ### Steps to Reproduce ```js <Routes> <Route path="/users/:id" element={<UserApp />} /> </Routes> ``` ### Expected Behavior `/users/-wYVsb1KDtT9YJJFUiSTq0dqUyvc5vK51nx7QW29CPJc` - This route is matched ### Actual Behavior `/users/-wYVsb1KDtT9YJJFUiSTq0dqUyvc5vK51nx7QW29CPJc` - This route is NOT matched `/users/wYVsb1KDtT9YJJFUiSTq0dqUyvc5vK51nx7QW29CPJc` - This route is matched I think the problem is in the mechanism that is looking for a suitable route. Anything that starts with a symbol `-` is not matched.