wix / react-native-calendars

React Native Calendar Components 🗓️ 📆
MIT License
9.6k stars 2.96k forks source link

Prevents stale data from being displayed when data changes occur in Agenda #2552

Closed edumana closed 1 week ago

edumana commented 1 week ago

This PR fixes a bug in the Agenda component where changes to the items prop do not trigger a re-render when the selectedDay remains the same. As a result, the component displays stale or outdated reservations that do not reflect the current data.

The fix is to simply set state with a new array reference using the spread operator.