From 35613fd6423014f9a9640dd702e9e202db7105b0 Mon Sep 17 00:00:00 2001
From: tamaina <tamaina@hotmail.co.jp>
Date: Tue, 11 Apr 2023 06:49:19 +0000
Subject: [PATCH] fix(client): noPaging: true with gallery/featured

---
 CHANGELOG.md                                  | 1 +
 packages/frontend/src/pages/gallery/index.vue | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

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,