I am in /customerOrders/13 page and from there I try to redirect to /customerOrders/14 using navigate('/customerOrders/14'). Even though the URL is updated, page is not redirected to /customerOrders/14.
Below are code fragments I extracted related to this from the codebase.
App.js
import {
  BrowserRouter,
  Routes,
  Route
} from "react-router-dom";
...
<BrowserRouter>
    <Routes>
        <Route path="customerOrders/:id" element={<CustomerOrderForm />}></Route>
    </Routes>
<Router>
CustomerOrderForm.jsx
import { useNavigate  } from "react-router-dom";
...
const CustomerOrderForm = () => {
    let navigate = useNavigate();
    const save = async () => {
        //
        // logic to persist data goes here...
        //
        navigate(`/customerOrders/${customerOrderId}`);
    }
    ...
}