diff --git a/src/client/actions/comicinfo.actions.tsx b/src/client/actions/comicinfo.actions.tsx
index afb2957..912ff88 100644
--- a/src/client/actions/comicinfo.actions.tsx
+++ b/src/client/actions/comicinfo.actions.tsx
@@ -42,11 +42,7 @@ export const getWeeklyPullList = (options) => async (dispatch) => {
axiosWithCache({
url: `${COMICVINE_SERVICE_URI}/getWeeklyPullList`,
method: "get",
- params: {
- startDate: "2022-4-8",
- pageSize: "15",
- currentPage: "1",
- },
+ params: options,
}).then((response) => {
dispatch({
type: CV_WEEKLY_PULLLIST_FETCHED,
diff --git a/src/client/components/App.tsx b/src/client/components/App.tsx
index db6a33a..304f477 100644
--- a/src/client/components/App.tsx
+++ b/src/client/components/App.tsx
@@ -9,6 +9,7 @@ import LibraryGrid from "./Library/LibraryGrid";
import Search from "./Search";
import Settings from "./Settings";
import VolumeDetail from "./VolumeDetail/VolumeDetail";
+import PullList from "./PullList/PullList";
import { Routes, Route } from "react-router-dom";
import Navbar from "./Navbar";
@@ -89,6 +90,7 @@ export const App = (): ReactElement => {
element={