Skip to content

Commit

Permalink
chore: fix lint issues
Browse files Browse the repository at this point in the history
Signed-off-by: Mirko Mollik <mirkomollik@gmail.com>
  • Loading branch information
cre8 committed Jul 9, 2024
1 parent a73ec15 commit bf1501f
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 5 deletions.
3 changes: 1 addition & 2 deletions apps/holder-app/src/app/auth/auth.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ import { Router } from '@angular/router';
import { AuthConfig, OAuthService } from 'angular-oauth2-oidc';
import { BehaviorSubject, combineLatest, Observable } from 'rxjs';
import { filter, map } from 'rxjs/operators';
import { AuthServiceInterface } from '@credhub/holder-shared';
import { ConfigService } from '../../../../../libs/holder-shared/src/lib/config.service';
import { AuthServiceInterface, ConfigService } from '@credhub/holder-shared';

@Injectable({ providedIn: 'root' })
export class AuthService implements AuthServiceInterface {
Expand Down
2 changes: 1 addition & 1 deletion libs/holder-shared/src/lib/config.service.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { HttpClient, HttpErrorResponse } from '@angular/common/http';
import { Injectable } from '@angular/core';
import { firstValueFrom, timeout } from 'rxjs';
import { EndpointResponse } from '@credhub/holder-shared';
import { EndpointResponse } from './api';

class LoadedAppConfig {
backendUrl!: string;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import { MatIconModule } from '@angular/material/icon';
import { FlexLayoutModule } from 'ng-flex-layout';
import { MatButtonModule } from '@angular/material/button';
import { MatListModule } from '@angular/material/list';
import { WebauthnService } from '../../auth/webauthn.service';

@Component({
selector: 'lib-history-show',
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Component, Input, OnInit } from '@angular/core';
import { Oid4vciApiService, TxCodeInfo } from '../../api/';
import { Oid4vciApiService } from '../../api/';
import { firstValueFrom } from 'rxjs';
import { CommonModule } from '@angular/common';
import {
Expand Down

0 comments on commit bf1501f

Please sign in to comment.