Skip to content

Commit

Permalink
fix: user email생성 (#169)
Browse files Browse the repository at this point in the history
  • Loading branch information
yeongbinim authored Nov 22, 2023
1 parent 429abfd commit 0f44a6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BE/src/auth/auth.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export class AuthService {
let prevUser = await this.usersService.findUserByEmail(user.email);
if (!prevUser) {
const userEntity = {
nickname: 'test',
nickname: user.email.split('@')[0],
email: user.email,
image_url: '',
};
Expand Down

0 comments on commit 0f44a6c

Please sign in to comment.