Your comments

Thank you so much - this really helped me!

Image 288

This is the code for my calander:

<FullCalendar 

plugins={[dayGridPlugin, interactionPlugin]} 

headerToolbar={{ right: 'today prev,next', center: '', left: 'title' }}

titleFormat={{ year: 'numeric', month: 'long' }} 

eventDrop={onDrop}

initialView="dayGridMonth"

editable={true} 

dayMaxEvents={true}

events={[...hebrewDates, ...currentEvents]}

droppable={true} 

weekends={true}

initialEvents={[...hebrewDates, ...currentEvents]} 

eventContent={RenderEventContent}

eventClick={onEventClick} />

I want the Hebrew date to enter in the date and not an additional event for the day

And that's how it looks:

Image 284