angular2-authentication-sample
angular2-authentication-sample copied to clipboard
route is calling twice
Hi friends, i think there is a issu in src/app/LoggedInOutlet.ts.
The redirect is calling twice . We need to remove the "return" statement.
We need just call super.
super.activate(instruction);
before
return super.activate(instruction);
after
super.activate(instruction);