EventCalendar onEventCreate giving me an event start date two days in the future

<Eventcalendar
  defaultSelectedDate={new Date(Date.now())}
  class="EventCalendar"
  renderScheduleEvent={renderScheduleEvent}
  showEventTooltip={false}
  theme="material"
  themeVariant="light"
  clickToCreate={false}
  dragToCreate={false}
  dragToMove={true}
  dragToResize={true}
  eventDelete={true}
  view={view}
  data={myEvents}
  resources={myResources}
  groupBy="date"
  renderResource={renderCustomResource}
  renderDay={renderDay}
  renderHeader={renderHeader}
  showControl={false}
  externalDrop={true}
  calendarScroll={true}
  onEventCreated={onEventCreated}
  onEventUpdated={onEventCreated}
  onEventCreateFailed={eventUpdateFail}
  onEventUpdateFailed={eventUpdateFail}
  onEventDoubleClick={(e) => onOpenChart(JSON.parse(e.event.title as string))}
/>

For some reason, when I drag an event into the EventCalendar the time is right but it gives me a date two days in then future. So today, Saturday, I create an event it shows up on Monday

Hi Joe,

I couldn’t see anything wrong in the shared code.

If your are still facing this problem please consider trying to provide a minimal reproducible example in one of our support channels so that we can see and examine the same issue as you.