Skip to content
Snippets Groups Projects
Verified Commit ced64b94 authored by Sebastian Bergandy's avatar Sebastian Bergandy :keyboard:
Browse files

OZG-7507 remove console.info

parent e6bdf2c5
Branches
Tags
No related merge requests found
...@@ -36,10 +36,9 @@ export class OrganisationsEinheitDeleteDialogContainerComponent { ...@@ -36,10 +36,9 @@ export class OrganisationsEinheitDeleteDialogContainerComponent {
} }
public delete(): void { public delete(): void {
this.deleteStateResource$ = this.organisationsEinheitService.delete(this.organisationsEinheitId).pipe( this.deleteStateResource$ = this.organisationsEinheitService
tap(console.info), .delete(this.organisationsEinheitId)
tap((stateResource: StateResource<void>) => this.closeDialogOnDeleteDone(stateResource)), .pipe(tap((stateResource: StateResource<void>) => this.closeDialogOnDeleteDone(stateResource)));
);
} }
private closeDialogOnDeleteDone(stateResource: StateResource<void>): void { private closeDialogOnDeleteDone(stateResource: StateResource<void>): void {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment