Agenda component renders selected day not once but each month on the same day (blue background), also never deselects
See original GitHub issueDescription
Agenda component renders selected day each month (blue background)
Expected Behavior
Should only render the month of the selected day
Observed Behavior
Environment
Introduced version 1.1290 version tagged 1.1289 was oke.
yarn ios
:yarn start
:
Also specify:
- Device/emulator/simulator & OS version:
Reproducible Demo
build and run the agenda example
yarn ios
:yarn start
:
go to agenda , scroll down and see the selected day repeat each time on the same day number.
Issues that come with minimal repro’s are resolved much more quickly than issues where a maintainer has to reproduce themselves.
Screenshots

Screenshots or gifs of the issue and the suggested fix will help us move faster with the review process.
Issue Analytics
- State:
- Created a year ago
- Reactions:8
- Comments:6
Top Results From Across the Web
React Native Calendar Agenda week view not rendering ...
I used Agenda in one of my screens. There is a strange issue however when selecting dates. I have set pastScrollRange and futureScrollRange....
Read more >The Trips Table is the first selection in the Trips/Blocks tab
There is no preset limit to the number of routes that can be maintained in the database. Each route can travel in one...
Read more >Responsive event calendar documentation for React | Mobiscroll
Agenda view. The agenda calendar displays a list of events for a given period of time (year, month, week or day). It can...
Read more >User Options
paradigm that a person that can schedule their day will be more pro- ductive than one that does not. Along with the scheduling...
Read more >MANAGING ORGANIZATIONAL NTEGRITY
The police officer of perfect integrity is not only rare, but a myth. ... is the most important determinant of line officers' day-to-day...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
issue found in day-state-manager.ts
commit 8d4f36b840bc482f318ac2ca4be1a710bbaaac0f line if ((context?.date ?? toMarkingFormat(current)) === toMarkingFormat(day)) { should be reverted to if (context?.date === toMarkingFormat(day)) {
then all works fine
This solution worked for me. Doesn’t require a downgrade.