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
No related branches found
No related tags found
No related merge requests found
......@@ -36,10 +36,9 @@ export class OrganisationsEinheitDeleteDialogContainerComponent {
}
public delete(): void {
this.deleteStateResource$ = this.organisationsEinheitService.delete(this.organisationsEinheitId).pipe(
tap(console.info),
tap((stateResource: StateResource<void>) => this.closeDialogOnDeleteDone(stateResource)),
);
this.deleteStateResource$ = this.organisationsEinheitService
.delete(this.organisationsEinheitId)
.pipe(tap((stateResource: StateResource<void>) => this.closeDialogOnDeleteDone(stateResource)));
}
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