I need to redirect to new URL for my application. I have an event on which I am changing the URL. Here URL is updated but page is not redirected. It only redirects after refresh. Please help me to solve this. Thanks.
JS:
_onNewFlowCreated(newFlow) {
let url= '/#/flows/'+ newFlow.uid +'/edit';
//window.history.pushState({}, '', url);
window.location.href= url;
}
I tried using react-router
. But not found solution.