Skip to content

Commit

Permalink
fix: resInfoDto에서 snowballDto가 두 번 변환되던 문제 해결, null -> false로 false -…
Browse files Browse the repository at this point in the history
…> true로 변환되고 있었음
  • Loading branch information
yunuo46 committed Dec 13, 2023
1 parent 98138db commit cd735bd
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions back/src/modules/user/user.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,7 @@ export class UserService {
main_snowball: mainSnowballDto
};

return plainToInstance(ResInfoDto, resInfoDto, {
enableCircularCheck: true
});
return resInfoDto;
}

async createUserDto(
Expand Down

0 comments on commit cd735bd

Please sign in to comment.