Skip to content

Commit b16b3ea

Browse files
Merge pull request #1787 from damienbod/fabiangosebrink-fix/return-casting-and-use-method-return-type
removed cast
2 parents d4fbb47 + 68e4fc0 commit b16b3ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projects/angular-auth-oidc-client/src/lib/auth-state/check-auth.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ export class CheckAuthService {
206206
accessToken: this.authStateService.getAccessToken(config),
207207
idToken: this.authStateService.getIdToken(config),
208208
configId,
209-
} as LoginResponse;
209+
};
210210
}),
211211
tap(({ isAuthenticated }) => {
212212
this.publicEventsService.fireEvent(EventTypes.CheckingAuthFinished);

0 commit comments

Comments
 (0)