this.router.navigate(['/d/admin', this.uuid], {
state: { username: this.user.username },
});
I'm using this to navigate to a different page in an Angular project, but the issue that I'm facing is that sometimes, I get the proper response from the backend, but it won't navigate to the page and does not print any error in the console.
What could be behind this?