fix(frontend): reset colour and change size of member card links
This commit is contained in:
parent
4514216405
commit
3f0a94af3d
2 changed files with 3 additions and 1 deletions
|
@ -56,12 +56,14 @@ export default function UserPage() {
|
|||
<Pagination className="justify-content-center">
|
||||
<Pagination.Prev
|
||||
as={Link}
|
||||
// @ts-expect-error using as=Link causes an error here, even though it runs completely fine
|
||||
to={`/@${user.username}?page=${currentPage - 1}`}
|
||||
disabled={currentPage === 0}
|
||||
/>
|
||||
{paginationItems}
|
||||
<Pagination.Next
|
||||
as={Link}
|
||||
// @ts-expect-error using as=Link causes an error here, even though it runs completely fine
|
||||
to={`/@${user.username}?page=${currentPage + 1}`}
|
||||
disabled={currentPage === pageCount - 1}
|
||||
/>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue