From b41348d96162c2599bb1c5f80b6b38a972c9e691 Mon Sep 17 00:00:00 2001 From: n8detar Date: Thu, 21 Apr 2022 12:18:36 -0700 Subject: [PATCH] Reset page number when switching to ignored. --- tubearchivist/www/src/pages/download.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/tubearchivist/www/src/pages/download.tsx b/tubearchivist/www/src/pages/download.tsx index c2f8f56..6e753ae 100755 --- a/tubearchivist/www/src/pages/download.tsx +++ b/tubearchivist/www/src/pages/download.tsx @@ -81,6 +81,7 @@ const Download: NextPage = () => { const handleSetIgnoredStatus = (selectedIgnoredStatus: IgnoredStatus) => { setIgnoredStatus(selectedIgnoredStatus); refetch(); + handleSetPageNumber(1); }; const handleSetFormHidden = (selectedFormHidden: FormHidden) => {