You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This PR:
- Removes unused `CommonModule`
- Uses `styleUrl` instead of `styleUrls`
- Uses `inject` for DI
- Uses `takeUntilDestroyed` instead of `Subject/OnDestroy` approach
- Fixes indents
There is a typing issue, which is now solved by a generic in the
following line:
```ts
private msalGuardConfig = inject<MsalGuardConfiguration>(MSAL_GUARD_CONFIG);
```
I found a fix in the next PR:
#7484
After its merge, the generic can be removed:
```ts
private msalGuardConfig = inject(MSAL_GUARD_CONFIG);
```
0 commit comments