Fix various ESLint errors in services

Signed-off-by: David Mehren <git@herrmehren.de>
This commit is contained in:
David Mehren 2021-02-24 22:35:06 +01:00
parent f20c2f06e0
commit cc1ca69bc1
No known key found for this signature in database
GPG key ID: 185982BA4C42B7C3
4 changed files with 11 additions and 6 deletions

View file

@ -56,7 +56,7 @@ export class UsersService {
toUserDto(user: User | null | undefined): UserInfoDto | null {
if (!user) {
this.logger.warn(`Recieved ${user} argument!`, 'toUserDto');
this.logger.warn(`Recieved ${String(user)} argument!`, 'toUserDto');
return null;
}
return {