Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
sszafGCA committed Oct 12, 2023
1 parent e9d32ac commit 323c284
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions apps/server/src/modules/user/service/user.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { ICurrentUser } from '@src/modules/authentication';
import { CurrentUserMapper } from '@src/modules/authentication/mapper';
import { RoleDto } from '@src/modules/role/service/dto/role.dto';
import { RoleService } from '@src/modules/role/service/role.service';
import { BadRequestException, Injectable, InternalServerErrorException } from '@nestjs/common';
import { BadRequestException, Injectable } from '@nestjs/common';
import { IUserConfig } from '../interfaces';
import { UserMapper } from '../mapper/user.mapper';
import { UserDto } from '../uc/dto/user.dto';
Expand Down Expand Up @@ -109,7 +109,6 @@ export class UserService {
}

async deleteUser(userId: EntityId): Promise<number> {

const deletedUserNumber: Promise<number> = this.userRepo.deleteUser(userId);

return deletedUserNumber;
Expand Down

0 comments on commit 323c284

Please sign in to comment.