fix: pagination

This commit is contained in:
Cory Dransfeldt 2024-11-22 10:31:25 -08:00
parent b6c87a56ef
commit 9a87398f32
No known key found for this signature in database

View file

@ -26,7 +26,7 @@ const pagination = {
nextPage: page.url.next || null, nextPage: page.url.next || null,
pages: Array.from({ length: page.lastPage }, (_, i) => ({ pages: Array.from({ length: page.lastPage }, (_, i) => ({
number: i + 1, number: i + 1,
href: i === 0 ? `/links` : `/links/${i + 1}`, href: i === 0 ? `/music/concerts` : `/music/concerts/${i + 1}`,
})), })),
}; };