Getting loop when receive "Error on Login" in Angular implementation

Please include the following information in your post:

  • Which SDK this is regarding: e.g. auth0-node
    @auth0/auth0-spa-js

  • SDK Version: e.g. 2.29.0
    1.11.0 (the same behavior in 1.3.2)

  • Platform Version: e.g. Node 12.19.0
    npm 7.0.2
    Node 15.0.0
    Angular 10.0.2

  • Code Snippets/Error Messages/Supporting Details/Screenshots:

Is this a feature request or bug report? If so, please create an issue directly in the corresponding GitHub repo. The Community SDK category is for general discussion and support.
It’s just an ask =)

I implemented the two versions of the Angular tutorial Auth0 Angular SDK for Single Page Apps
The first version (the code inside the library exposed) is when the library was in 1.11.0
The second version of the tutorial is the actual 1.3.2 (all the code encapsulated inside the library)

When my user try to do the login, but he have not access, I receive the code 401 (that’s normal), but that implementation redirect me to back to the application and my components have Guards, to redirect me to the Login again, the user have no access and redirect back to the application… infinite loop

So, how can I hnadle this issue? In the last version of the library I have less access to make changes in the Guard, so how can I stop the loop?

(I know in the tutorial, the HomeComponent have no guards, But in my application I don’t have components that can be accessed without login, here in the company, the applications works with SSO, if the user is logged, we don’t redirect to login again)