diff --git a/app/components/PaginatedDocumentList.js b/app/components/PaginatedDocumentList.js index 1ad102e5c..03ba3347b 100644 --- a/app/components/PaginatedDocumentList.js +++ b/app/components/PaginatedDocumentList.js @@ -37,7 +37,11 @@ class PaginatedDocumentList extends React.Component { this.isFetching = true; const limit = DEFAULT_PAGINATION_LIMIT; - const results = await this.props.fetch({ limit, ...this.props.options }); + const results = await this.props.fetch({ + limit, + offset: this.offset, + ...this.props.options, + }); if ( results &&