Reactjs – react object is possible null or undefined
why I recieve this error although I make a condition check if the object exists. Object is possible null or undefined Code: { const inHolidays = useCallback(() => data?.user.holiday_times ? checkIfEmployeeIsInHolidays(data?.user.holiday_times) : null, [data]); .... inHolidays() ? <p>Mitarbeiter ist im…