feat: 広場のページネーション(#169) #189

マージ済み
みてるぞ が 4 個のコミットを feature/169 から main へマージ 2025-12-30 11:13:04 +09:00
コミット 1c75f2b68d の変更だけを表示してゐます - すべてのコミットを表示
+1 -1
ファイルの表示
@@ -45,7 +45,7 @@ export default () => {
.map (post => [post.id, post])))
.values ())]))
setCursor (data.nextCursor)
setTotalPages (Math.trunc ((data.count - 1) / limit))
setTotalPages (Math.ceil (data.count / limit))
setLoading (false)
}