Skip to content

Commit

Permalink
fix(deepscan): #6823 removed unused import
Browse files Browse the repository at this point in the history
  • Loading branch information
rahul-rocket committed Oct 2, 2023
1 parent 941b2a7 commit 331ae74
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
import { AfterViewInit, Component, OnInit } from '@angular/core';
import { TitleCasePipe } from '@angular/common';
import { ActivatedRoute, Data } from '@angular/router';
import { debounceTime, mergeMap, of } from 'rxjs';
import { debounceTime, of } from 'rxjs';
import { Observable } from 'rxjs/internal/Observable';
import { catchError, filter, map, switchMap, tap } from 'rxjs/operators';
import { TranslateService } from '@ngx-translate/core';
import { NbMenuItem } from '@nebular/theme';
import { UntilDestroy, untilDestroyed } from '@ngneat/until-destroy';
import { IGithubIssue, IGithubRepository, IGithubRepositoryResponse, IOrganization } from '@gauzy/contracts';
import { distinctUntilChange } from '@gauzy/common-angular';
Expand All @@ -14,7 +15,6 @@ import {
GithubService,
Store
} from './../../../../../@core/services';
import { NbMenuItem } from '@nebular/theme';

@UntilDestroy({ checkProperties: true })
@Component({
Expand Down

0 comments on commit 331ae74

Please sign in to comment.