Skip to content

Commit

Permalink
fix(paginator): fix in siglequotes
Browse files Browse the repository at this point in the history
  • Loading branch information
malegreIndec committed Jan 8, 2024
1 parent 6c7536a commit 698d686
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Pagination/Pagination.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const Pagination = ({
const hasArrowRight = Math.max(...pages) < totalPages;
const hasArrowLeft = Math.min(...pages) > 1;

const handleChangeInput = value => setSearch(Number(value) || "");
const handleChangeInput = value => setSearch(Number(value) || '');

const handleMoveLeft = () => {
const pagesNumbers = getPagesNumber(pages);
Expand Down

0 comments on commit 698d686

Please sign in to comment.