fix(client): noPaging: true with gallery/featured

This commit is contained in:
tamaina 2023-04-11 06:49:19 +00:00
parent 5cabbd0eef
commit 35613fd642
2 changed files with 2 additions and 1 deletions

View File

@ -24,6 +24,7 @@
- iPhoneで絵文字ピッカーの表示が崩れる問題を修正 - iPhoneで絵文字ピッカーの表示が崩れる問題を修正
- iPhoneでウィジェットドロワーの「ウィジェットを編集」が押しにくい問題を修正 - iPhoneでウィジェットドロワーの「ウィジェットを編集」が押しにくい問題を修正
- 投稿フォームのデザインを調整 - 投稿フォームのデザインを調整
- ギャラリーの人気の投稿が無限にページングされる問題を修正
### Server ### Server
- channels/search Endpoint APIの追加 - channels/search Endpoint APIの追加

View File

@ -66,7 +66,7 @@ const recentPostsPagination = {
}; };
const popularPostsPagination = { const popularPostsPagination = {
endpoint: 'gallery/featured' as const, endpoint: 'gallery/featured' as const,
limit: 5, noPaging: true,
}; };
const myPostsPagination = { const myPostsPagination = {
endpoint: 'i/gallery/posts' as const, endpoint: 'i/gallery/posts' as const,