diff --git a/src/view/plugin/pagination.tsx b/src/view/plugin/pagination.tsx index 2076d27d..f9d7c464 100644 --- a/src/view/plugin/pagination.tsx +++ b/src/view/plugin/pagination.tsx @@ -86,9 +86,11 @@ export function Pagination() { if (resetPageOnUpdate && updatedProcessor !== processor.current) { setCurrentPage(0); - processor.current.setProps({ - page: 0, - }); + if (processor.current.props.page !== 0) { + processor.current.setProps({ + page: 0, + }); + } } };