Skip to content
This repository has been archived by the owner on Sep 18, 2024. It is now read-only.

Commit

Permalink
merge conflict fixing
Browse files Browse the repository at this point in the history
  • Loading branch information
btabaska committed Aug 23, 2024
1 parent 52bff05 commit a1e2198
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/components/search/SearchPagination.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ export default function SearchPagination({
onClickNext={() => updatePage(page + 1)}
onClickPrevious={() => updatePage(page > 1 ? page - 1 : 0)}
onClickPageNumber={(event: React.MouseEvent, page: number) =>
updatePage(page)
}
updatePage(page)}
/>
)}
</div>
);
}

0 comments on commit a1e2198

Please sign in to comment.