Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/features/bookings/lib/handleNewBooking.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1941,7 +1941,7 @@ async function handler(
})
);

if (!isDryRun) {
if (!isDryRun && !(eventType.seatsPerTimeSlot && rescheduleUid)) {
await sendScheduledEmailsAndSMS(
{
...evt,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ const attendeeRescheduleSeatedBooking = async (
// We don't want to trigger rescheduling logic of the original booking
originalRescheduledBooking = null;

await sendRescheduledSeatEmailAndSMS(evt, seatAttendee as Person, eventType.metadata);

return null;
}

Expand Down
Loading