Skip to content

Commit

Permalink
fix(remove): remove console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Zach13131 committed Jan 22, 2024
1 parent a109cf2 commit 2577f8c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 47 deletions.
6 changes: 1 addition & 5 deletions src/auth/auth.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -190,10 +190,6 @@ export class AuthController {

@Post('google/login')
async googleAuth(@Body('token') token: string, @Res({ passthrough: true }) res: Response) {
console.log('AuthController ~ googleAuth ~ token:', token);

const a = await this.googleService.googleLogin(token, res);
console.log('AuthController ~ googleAuth ~ a:', a);
return a;
return await this.googleService.googleLogin(token, res);
}
}
42 changes: 0 additions & 42 deletions src/auth/google/google.strategy.ts

This file was deleted.

0 comments on commit 2577f8c

Please sign in to comment.