diff --git a/packages/frontend/src/components/MkPagination.vue b/packages/frontend/src/components/MkPagination.vue index 2b3ccb88c..04c8616c9 100644 --- a/packages/frontend/src/components/MkPagination.vue +++ b/packages/frontend/src/components/MkPagination.vue @@ -194,8 +194,6 @@ const fetchMore = async (): Promise => { limit: SECOND_FETCH_LIMIT + 1, ...(props.pagination.offsetMode ? { offset: offset.value, - } : props.pagination.reversed ? { - sinceId: items.value[0].id, } : { untilId: items.value[items.value.length - 1].id, }), @@ -262,8 +260,6 @@ const fetchMoreAhead = async (): Promise => { limit: SECOND_FETCH_LIMIT + 1, ...(props.pagination.offsetMode ? { offset: offset.value, - } : props.pagination.reversed ? { - untilId: items.value[0].id, } : { sinceId: items.value[items.value.length - 1].id, }),