Skip to content

Commit

Permalink
update button copy
Browse files Browse the repository at this point in the history
update fast forward and rewind buttons.
  • Loading branch information
evanorti committed Mar 9, 2024
1 parent 0312715 commit 6fdfd66
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/pages/nft/NFTs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ const PaginationControls = ({
Start
</button>
<button onClick={() => skipPages(-0.1)} disabled={currentPage <= 1}>
Rewind {Math.round(totalPages * 0.1)}
&lt;&lt; {Math.round(totalPages * 0.1)} Pages
</button>
<button onClick={goToPreviousPage} disabled={currentPage === 1}>
Previous
Expand All @@ -89,7 +89,7 @@ const PaginationControls = ({
onClick={() => skipPages(0.1)}
disabled={currentPage >= totalPages}
>
Fast Forward {Math.round(totalPages * 0.1)}
{Math.round(totalPages * 0.1)} Pages &gt;&gt;
</button>
<button
onClick={() => goToPage(totalPages)}
Expand Down

0 comments on commit 6fdfd66

Please sign in to comment.