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
Currently, the pagination of sessions always shows page 1 and page 2 from the start, even though there is not yet a page 2. The user can click on page 2 and get to a broken state.
Suggestion:
don't show pagination at all if number of sessions is < x
once there are two pages to be filled (no. of sessions > x + 1 and < x + x), show page 1 & 2
once there are enough sessions for 3 pages (no. of sessions > x + x + 1 and < x + x +x), show page 1 & 2 & 3 etc.