diff --git a/server/apps/immich/src/api-v1/user/user.service.ts b/server/apps/immich/src/api-v1/user/user.service.ts index 4afd28be85..9a648b9964 100644 --- a/server/apps/immich/src/api-v1/user/user.service.ts +++ b/server/apps/immich/src/api-v1/user/user.service.ts @@ -39,7 +39,6 @@ export class UserService { } async getUserById(userId: string): Promise { - console.log(userId); const user = await this.userRepository.get(userId); if (!user) { throw new NotFoundException('User not found');