fixed the end time issue to saveuseritinerary

This commit is contained in:
2026-04-03 10:13:56 +05:30
parent e22c37bc65
commit 6703dc784d

View File

@@ -805,13 +805,6 @@ export class ItineraryService {
mismatchReasons.push('start_time_mismatch');
}
if (
requestedEndTime &&
normalizedSlotEndTime !== requestedEndTime
) {
mismatchReasons.push('end_time_mismatch');
}
return {
slotId: slot.id,
occurenceDate: startOfDay(slotDate),