Skip to content

Commit

Permalink
Update users.service.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
totobon6125 authored Oct 26, 2023
1 parent b5b160a commit 57329e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/users/users.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ export class UsersService {
// 3. user 정보 수정
async update(userId: number, updateUserDto: UpdateUserDto) {
const { nickname, intro, nameChanged, userLocation } = updateUserDto;

console.log("닉네임 들어오나?",nickname)
const user = await this.prisma.user.findUnique({
where: { userId },
});
Expand Down

0 comments on commit 57329e7

Please sign in to comment.