From d34d1a8422f1184650630b18dee3f58e5116df5e Mon Sep 17 00:00:00 2001 From: Marvin Rode Date: Wed, 15 Nov 2023 11:00:19 +0100 Subject: [PATCH] Fix lint errors --- src/modules/organisation/api/organisation.uc.ts | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/src/modules/organisation/api/organisation.uc.ts b/src/modules/organisation/api/organisation.uc.ts index 8f1a54969..d5def0a19 100644 --- a/src/modules/organisation/api/organisation.uc.ts +++ b/src/modules/organisation/api/organisation.uc.ts @@ -116,9 +116,8 @@ export class OrganisationUc { } public async findVerwaltetVon(parentOrganisationId: string): Promise> { - const result: Paged> = await this.organisationService.findAllVerwaltetVon( - parentOrganisationId, - ); + const result: Paged> = + await this.organisationService.findAllVerwaltetVon(parentOrganisationId); const organisations: OrganisationResponse[] = this.mapper.mapArray( result.items, @@ -135,9 +134,8 @@ export class OrganisationUc { } public async findZugehoerigZu(parentOrganisationId: string): Promise> { - const result: Paged> = await this.organisationService.findAllZugehoerigZu( - parentOrganisationId, - ); + const result: Paged> = + await this.organisationService.findAllZugehoerigZu(parentOrganisationId); const organisations: OrganisationResponse[] = this.mapper.mapArray( result.items,