I've created a custom RecurrenceConfirmationPopup component that shows up when editing a recurring event on drag/resize. Right now, when I select an option from the popup, the event doesn't get updated on the Calendar UI. How do I get the event to update on the calendar UI after the user selects an option: 'this', 'this and following' or 'all'?
const beforeDragResizeEnd = async ({
eventRecord: record,
newStartDate,
newEndDate,
source,
}: {
eventRecord: AvailabilityEventModel;
newStartDate: Date;
newEndDate: Date;
source: Calendar;
}) => {
// handles showing the popup and updating the db
const res = await handleUpdateEvent(record, newStartDate, newEndDate, source);
return false;
};