We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38d9985 commit 6aeaa7fCopy full SHA for 6aeaa7f
src/app/services/auth.service.ts
@@ -24,8 +24,6 @@ export class AuthService {
24
public readonly fcKeycloakClientSecret: string;
25
private demoUsername: string | undefined;
26
private demoPassword: string | undefined;
27
- private loginRetryCount = 0;
28
- private readonly maxLoginRetries = 1;
29
private usernameSubject: BehaviorSubject<string | null> = new BehaviorSubject<string | null>(null);
30
username$: Observable<string | null> = this.usernameSubject.asObservable();
31
private isLoggedInSubject: BehaviorSubject<boolean> = new BehaviorSubject<boolean>(false);
0 commit comments