Skip to content

Commit

Permalink
chore: remove unused variables
Browse files Browse the repository at this point in the history
  • Loading branch information
jxhnx committed Jan 7, 2025
1 parent 38d9985 commit 6aeaa7f
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/app/services/auth.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@ export class AuthService {
public readonly fcKeycloakClientSecret: string;
private demoUsername: string | undefined;
private demoPassword: string | undefined;
private loginRetryCount = 0;
private readonly maxLoginRetries = 1;
private usernameSubject: BehaviorSubject<string | null> = new BehaviorSubject<string | null>(null);
username$: Observable<string | null> = this.usernameSubject.asObservable();
private isLoggedInSubject: BehaviorSubject<boolean> = new BehaviorSubject<boolean>(false);
Expand Down

0 comments on commit 6aeaa7f

Please sign in to comment.