Alex Tran 3 лет назад
Родитель
Сommit
c129023821
1 измененных файлов с 0 добавлено и 1 удалено
  1. 0 1
      server/apps/immich/src/api-v1/user/user.service.ts

+ 0 - 1
server/apps/immich/src/api-v1/user/user.service.ts

@@ -39,7 +39,6 @@ export class UserService {
   }
 
   async getUserById(userId: string): Promise<UserResponseDto> {
-    console.log(userId);
     const user = await this.userRepository.get(userId);
     if (!user) {
       throw new NotFoundException('User not found');