Skip to content

Commit 6aeaa7f

Browse files
committed
chore: remove unused variables
1 parent 38d9985 commit 6aeaa7f

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/app/services/auth.service.ts

-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ export class AuthService {
2424
public readonly fcKeycloakClientSecret: string;
2525
private demoUsername: string | undefined;
2626
private demoPassword: string | undefined;
27-
private loginRetryCount = 0;
28-
private readonly maxLoginRetries = 1;
2927
private usernameSubject: BehaviorSubject<string | null> = new BehaviorSubject<string | null>(null);
3028
username$: Observable<string | null> = this.usernameSubject.asObservable();
3129
private isLoggedInSubject: BehaviorSubject<boolean> = new BehaviorSubject<boolean>(false);

0 commit comments

Comments
 (0)