The issue was that clicking on a date on the calendar was creating empty events that would fill up the calendar.
This was happening because the onSelectSlot prop was linked to the newEvent function, which was creating empty events.
Removed onSelectSlot.
Functionality now more in align with the other storybook section, Basic Drag n Drop, where clicking on the dates does not do anything.
The issue was that clicking on a date on the calendar was creating empty events that would fill up the calendar. This was happening because the
onSelectSlot
prop was linked to thenewEvent
function, which was creating empty events.Removed
onSelectSlot
. Functionality now more in align with the other storybook section, Basic Drag n Drop, where clicking on the dates does not do anything.Closes #2587