refresh api logout and login
This commit is contained in:
@@ -23,7 +23,7 @@ const getPages = (current: number, total: number) => {
|
||||
pages.push('dots');
|
||||
}
|
||||
|
||||
const start = Math.max(2, current - 1);
|
||||
const start = Math.min(2, current - 1);
|
||||
const end = Math.min(total - 1, current + 1);
|
||||
|
||||
for (let i = start; i <= end; i++) {
|
||||
|
||||
Reference in New Issue
Block a user