Skip to content

Commit c6d715a

Browse files
Hardik500gtsiolis
authored andcommitted
Refactored props values
1 parent 79c1cf6 commit c6d715a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

components/dashboard/src/Pagination/Pagination.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ function Pagination(props: PaginationProps) {
4444
isDisabled={currentPage === 1}
4545
onClick={prevPage}
4646
label={"Previous"}
47-
arrowReversed={false}
47+
arrowDirection={"left"}
4848
/>
4949
{calculatedPagination.map((pn, i) => {
5050
if (pn === "...") {
@@ -60,7 +60,7 @@ function Pagination(props: PaginationProps) {
6060
isDisabled={currentPage === totalNumberOfPages}
6161
onClick={nextPage}
6262
label={"Next"}
63-
arrowReversed={true}
63+
arrowDirection={"right"}
6464
/>
6565
</ul>
6666
</nav>

0 commit comments

Comments
 (0)