#169 バグ修正

This commit is contained in:
2025-12-30 11:03:01 +09:00
parent 271a469f6e
commit 1c75f2b68d
+1 -1
View File
@@ -45,7 +45,7 @@ export default () => {
.map (post => [post.id, post]))) .map (post => [post.id, post])))
.values ())])) .values ())]))
setCursor (data.nextCursor) setCursor (data.nextCursor)
setTotalPages (Math.trunc ((data.count - 1) / limit)) setTotalPages (Math.ceil (data.count / limit))
setLoading (false) setLoading (false)
} }