Skip to content

Commit

Permalink
Merge pull request #125 from Hanaro-trip-together-bank/feature/trip
Browse files Browse the repository at this point in the history
fix: trip content 정보 오류 수정
  • Loading branch information
lcw729 authored Jun 5, 2024
2 parents d7f7f23 + c44d342 commit be36960
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 be36960

Please sign in to comment.