Seems like the page count returned from the crud endpoint is rounded down. ```json { "count": 10, "total": 41, "page": 1, "pageCount": 4 } ``` Rounding up would solve this issue. Like `Math.round(41/10) === 5`
Seems like the page count returned from the crud endpoint is rounded down.
{ "count": 10, "total": 41, "page": 1, "pageCount": 4 }Rounding up would solve this issue.
Like
Math.round(41/10) === 5