Skip to content

Commit

Permalink
fix: trip content 정보 오류 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
lcw729 committed Jun 5, 2024
1 parent d7f7f23 commit c44d342
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public void createTrip(TripReqDto tripReqDto) throws NoSuchElementException{
Trip trip = Trip.builder()
.team(team)
.tripName(tripReqDto.getTripName())
.tripContent(tripReqDto.toString())
.tripContent(tripReqDto.getTripContent())
.tripGoalAmount(tripReqDto.getTripGoalAmount())
.tripDay(tripReqDto.getTripDay())
.tripImg(tripReqDto.getTripImg())
Expand Down

0 comments on commit c44d342

Please sign in to comment.