Skip to content

Commit

Permalink
add destination
Browse files Browse the repository at this point in the history
  • Loading branch information
taronaleksanian committed Dec 16, 2024
1 parent 2e8b207 commit dcfeb1a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions server/src/services/trip/editTripService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ export const editTripService = async (
id: tripData?.id,
name: tripData.name || selectedTrip.name,
description: tripData.description || selectedTrip.description,
destination: tripData.destination || selectedTrip.destination,
start_date: tripData.start_date || selectedTrip.start_date,
end_date: tripData.end_date || selectedTrip.end_date,
activity: tripData.activity || selectedTrip.activity,
Expand Down

0 comments on commit dcfeb1a

Please sign in to comment.