Skip to content

Commit

Permalink
fix: push to test workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
SahilK-027 committed Apr 30, 2024
1 parent 39a5ae6 commit 6e06330
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {
} from '@angular/core';
import { Observable, fromEvent, iif, of, from } from 'rxjs';
import { ModalController } from '@ionic/angular';
import { map, startWith, distinctUntilChanged, switchMap, concatMap, finalize, tap } from 'rxjs/operators';
import { map, startWith, distinctUntilChanged, switchMap, concatMap, finalize } from 'rxjs/operators';
import { isEqual } from 'lodash';
import { ProjectsService } from 'src/app/core/services/projects.service';
import { AuthService } from 'src/app/core/services/auth.service';
Expand Down Expand Up @@ -178,9 +178,6 @@ export class FyProjectSelectModalComponent implements OnInit, AfterViewInit {
startWith(''),
distinctUntilChanged(),
switchMap((searchText: string) => this.getProjects(searchText)),
tap((projects) => {
console.log('Projects', projects);
}),
map((projects: any[]) =>
projects.map((project) => {
if (isEqual(project.value, this.currentSelection)) {
Expand Down

0 comments on commit 6e06330

Please sign in to comment.