remove console.log

This commit is contained in:
Amruth Pillai
2023-01-19 07:52:59 +01:00
parent 5331ecccc1
commit 9f8f2c4b8b

View File

@ -62,7 +62,6 @@ export class AuthController {
@UseGuards(JwtAuthGuard)
@Patch('update-profile')
updateProfile(@User('id') userId: number, @Body() updateProfileDto: UpdateProfileDto) {
console.log({ userId, updateProfileDto });
return this.authService.updateProfile(userId, updateProfileDto);
}