diff --git a/CHANGELOG.md b/CHANGELOG.md index 20243e057..41353c346 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,6 +24,7 @@ - iPhoneで絵文字ピッカーの表示が崩れる問題を修正 - iPhoneでウィジェットドロワーの「ウィジェットを編集」が押しにくい問題を修正 - 投稿フォームのデザインを調整 +- ギャラリーの人気の投稿が無限にページングされる問題を修正 ### Server - channels/search Endpoint APIの追加 diff --git a/packages/frontend/src/pages/gallery/index.vue b/packages/frontend/src/pages/gallery/index.vue index de8f448da..fc9cc7ae9 100644 --- a/packages/frontend/src/pages/gallery/index.vue +++ b/packages/frontend/src/pages/gallery/index.vue @@ -66,7 +66,7 @@ const recentPostsPagination = { }; const popularPostsPagination = { endpoint: 'gallery/featured' as const, - limit: 5, + noPaging: true, }; const myPostsPagination = { endpoint: 'i/gallery/posts' as const,