I have this code which is the code for setting paramaters for my calendar:
import timeGridPlugin from '@fullcalendar/timegrid'
import FullCalendar from '@fullcalendar/react'
calevents.push({
title: res.data[i].title,
start: moment(res.data[i].dateTime).toDate(),
end: moment(res.data[i].dateTime).add(2, 'hours'),
displayEventEnd: true,
id: res.data[i]._id,
allDayDefault: false,
slotMinTime: '8:00:00',
slotMaxTime: '18:00:00',
extendedProps: {
description: res.data[i].description
},
})
Basically, what I am trying to do is set the business hours of my business for the calendar. Using slotMinTime and slotMaxTime I thought I could set it, however, it doesn't change the view of the calendar.
How can I fix this?