diff --git a/src/client/actions/comicinfo.actions.tsx b/src/client/actions/comicinfo.actions.tsx index 912ff88..5f99ce5 100644 --- a/src/client/actions/comicinfo.actions.tsx +++ b/src/client/actions/comicinfo.actions.tsx @@ -109,10 +109,10 @@ export const getIssuesForSeries = comicObjectID, }, }); - + console.log(issues); dispatch({ type: CV_ISSUES_FOR_VOLUME_IN_LIBRARY_SUCCESS, - issues: issues.data, + issues: issues.data.results, }); }; diff --git a/src/client/components/Dashboard/PullList.tsx b/src/client/components/Dashboard/PullList.tsx index 99ada80..9a27717 100644 --- a/src/client/components/Dashboard/PullList.tsx +++ b/src/client/components/Dashboard/PullList.tsx @@ -19,7 +19,7 @@ export const PullList = ({ issues }: PullListProps): ReactElement => { useEffect(() => { dispatch( getWeeklyPullList({ - startDate: "2022-4-8", + startDate: "2022-4-13", pageSize: "15", currentPage: "1", }), diff --git a/src/client/components/PullList/PullList.tsx b/src/client/components/PullList/PullList.tsx index 8d349ca..173be1a 100644 --- a/src/client/components/PullList/PullList.tsx +++ b/src/client/components/PullList/PullList.tsx @@ -14,7 +14,7 @@ export const PullList = (): ReactElement => { useEffect(() => { dispatch( getWeeklyPullList({ - startDate: "2022-4-22", + startDate: "2022-4-12", pageSize: "100", currentPage: "1", }),