React Pagination and Redux Store

I’ve read a few blog posts about pagination strategy and it makes sense to me, but I’m wondering how other people handle data updates by other users. For example, if I pull page 1 of a paginated list of todos sorted by created_at date, save it in my store and move on to page 2, what happens if another user adds a todo to the database. My page 1 data is now incorrect. Can anyone recommend any articles or videos on keeping store data in sync with the database?