Here is my code and I am trying to navigate to '/employee-profile/empId' while pressing browser back button, but this code doesn't work properly
I have tried using PlatformLocation here.
this.location.onPopState(() => {
console.log('pressed back!');
this.router.navigate(['/employee-profile/empId']);
});