mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-21 22:04:31 -04:00
Fixed: Error refreshing page on Activity/Wanted
This commit is contained in:
@@ -13,9 +13,12 @@ import History from './History';
|
||||
function createMapStateToProps() {
|
||||
return createSelector(
|
||||
(state) => state.history,
|
||||
(state) => state.authors,
|
||||
(state) => state.books,
|
||||
(history, books) => {
|
||||
(history, authors, books) => {
|
||||
return {
|
||||
isAuthorFetching: authors.isFetching,
|
||||
isAuthorPopulated: authors.isPopulated,
|
||||
isBooksFetching: books.isFetching,
|
||||
isBooksPopulated: books.isPopulated,
|
||||
booksError: books.error,
|
||||
|
||||
Reference in New Issue
Block a user