diff --git a/meet-ce/backend/src/services/user.service.ts b/meet-ce/backend/src/services/user.service.ts index 5aa2ea66..3cf5a673 100644 --- a/meet-ce/backend/src/services/user.service.ts +++ b/meet-ce/backend/src/services/user.service.ts @@ -311,8 +311,9 @@ export class UserService { // Convert user to UserDTO to remove sensitive information convertToDTO(user: MeetUser): MeetUserDTO { - // eslint-disable-next-line @typescript-eslint/no-unused-vars const { passwordHash, mustChangePassword, ...userDTO } = user; + void passwordHash; + void mustChangePassword; return userDTO; } }