Skip to content

Commit

Permalink
refactor: Remove console.log statement in updateUserFCMToken endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
suk-6 committed Jul 19, 2024
1 parent a8d6c0d commit d7e2649
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/modules/user/user.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ export class UserController {
@CurrentUser() user: User,
@Body() data: UpdateUserFCMTokenDTO,
): Promise<ResponseDTO<null>> {
console.log('🚀 ~ UserController ~ data:', data);
await this.userService.updateUserFCMTokenById(user.id, data.FCMToken);
return { status: 'success', data: null };
}
Expand Down

0 comments on commit d7e2649

Please sign in to comment.