fix: pagination
This commit is contained in:
parent
b6c87a56ef
commit
9a87398f32
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ const pagination = {
|
|||
nextPage: page.url.next || null,
|
||||
pages: Array.from({ length: page.lastPage }, (_, i) => ({
|
||||
number: i + 1,
|
||||
href: i === 0 ? `/links` : `/links/${i + 1}`,
|
||||
href: i === 0 ? `/music/concerts` : `/music/concerts/${i + 1}`,
|
||||
})),
|
||||
};
|
||||
|
||||
|
|
Reference in a new issue