📑 Added comic detail page and routes

This commit is contained in:
2021-06-11 10:27:13 -07:00
parent 62b55a4bd8
commit 2b3fcbfeb5
5 changed files with 26 additions and 6 deletions

View File

@@ -86,7 +86,7 @@ export const getRecentlyImportedComicBooks = (options) => async (dispatch) => {
.then((response) => {
dispatch({
type: IMS_RECENT_COMICS_FETCHED,
data: response.data.docs,
data: response.data,
});
});
};