You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I expect there's an off-by-one error somewhere in the pagination pipeline.
Example of expected behavior:
There are 7 total listings and we're supposed to display 2 per page. We expect 4 total pages, the first 3 holding 2 listings each, and the last page showing 1.
Actual behavior:
In the above example, only 3 pages are shown, each with 2 listings.
However, if we have 7 listings and we show at least 7 per page, all 7 listings show up on the first (and only) page.
The text was updated successfully, but these errors were encountered:
I expect there's an off-by-one error somewhere in the pagination pipeline.
Example of expected behavior:
There are 7 total listings and we're supposed to display 2 per page. We expect 4 total pages, the first 3 holding 2 listings each, and the last page showing 1.
Actual behavior:
In the above example, only 3 pages are shown, each with 2 listings.
However, if we have 7 listings and we show at least 7 per page, all 7 listings show up on the first (and only) page.
The text was updated successfully, but these errors were encountered: