Skip to content

Commit

Permalink
Remove tap #716
Browse files Browse the repository at this point in the history
  • Loading branch information
caebr committed Dec 12, 2024
1 parent ca5a04c commit a40bdc1
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
import { toObservable, toSignal } from "@angular/core/rxjs-interop";
import { ActivatedRoute } from "@angular/router";
import { TranslateModule } from "@ngx-translate/core";
import { Observable, filter, map, switchMap, tap } from "rxjs";
import { Observable, filter, map, switchMap } from "rxjs";
import { SETTINGS, Settings } from "../../../settings";
import { BacklinkComponent } from "../../../shared/components/backlink/backlink.component";
import { SubscriptionDetail } from "../../../shared/models/subscription.model";
Expand Down Expand Up @@ -70,7 +70,6 @@ export class EventsStudentsStudyCourseDetailComponent {
map((details) =>
details.map((detail) => this.toSubscriptionDetailsEntry(detail)),
),
tap((details) => console.log(details)),
);
}

Expand Down

0 comments on commit a40bdc1

Please sign in to comment.