I'm creating a scheduler that depending on what options the user selects, the start hours on the scheduler may be different.
I have noticed though that the when I change the startHour the scheduler doesn't recognize those changes and simply displays the inital startHour when it loaded.
I forked another sample you provided (thank you for that help) and in that example you can see the startHour changes, but not scheduler doesn't update to reflect that change:
https://stackblitz.com/edit/react-scheduler-events-rendered-using-state-s8ovfx?file=index.js
If startHour doesn't support being dynamically changed, is there a way to sort of "kick" the scheduler to rerender if we change something and it doesn't recognize the change?
Thank you.