diff --git a/CHANGELOG.md b/CHANGELOG.md index b2e90d940..53e9b1719 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,8 @@ ### Client - PWA時の絵文字ピッカーの位置をホームバーに重ならないように調整 +- リスト管理の画面でリストが無限に読み込まれる問題を修正 +- 自分のクリップが無限に読み込まれる問題を修正 ### Server - 通知読み込みでエラーが発生する場合がある問題を修正 diff --git a/packages/frontend/src/pages/my-clips/index.vue b/packages/frontend/src/pages/my-clips/index.vue index aad914d6b..ccffa7b56 100644 --- a/packages/frontend/src/pages/my-clips/index.vue +++ b/packages/frontend/src/pages/my-clips/index.vue @@ -32,6 +32,7 @@ import { clipsCache } from '@/cache'; const pagination = { endpoint: 'clips/list' as const, + noPaging: true, limit: 10, }; diff --git a/packages/frontend/src/pages/my-lists/index.vue b/packages/frontend/src/pages/my-lists/index.vue index 11a2aca8c..47437f3e5 100644 --- a/packages/frontend/src/pages/my-lists/index.vue +++ b/packages/frontend/src/pages/my-lists/index.vue @@ -30,6 +30,7 @@ const pagingComponent = $shallowRef>(); const pagination = { endpoint: 'users/lists/list' as const, + noPaging: true, limit: 10, };