You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Upon getting focus on the screen, I am using the ref and calling updateWeekView as below:
useFocusEffect(
React.useCallback(() => {
if (calComp.current) {
calComp.current.updateWeekView(moment().weekday(0));
}
}, []),
);
But, if I comment this out and load the page and uncomment the updateWeekView call and navigate back to the same page, it wont throw this exception.
Kerenby74, Gedoz and fabio-alss-freitasKerenby74Kerenby74