File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
src/components/dashboard/LeaderBoard Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -451,16 +451,20 @@ export default function LeaderBoard(): JSX.Element {
451451 onClick = { ( ) => paginate ( currentPage - 1 ) }
452452 disabled = { currentPage === 1 }
453453 className = { `pagination-btn ${ currentPage === 1 ? "disabled" : "" } ` }
454+ aria-label = "Previous page"
455+ title = "Previous page"
454456 >
455- < ChevronLeft size = { 16 } />
457+ < ChevronLeft size = { 20 } />
456458 </ button >
457459 < div className = "page-numbers" > { renderPaginationButtons ( ) } </ div >
458460 < button
459461 onClick = { ( ) => paginate ( currentPage + 1 ) }
460462 disabled = { currentPage === totalPages }
461463 className = { `pagination-btn ${ currentPage === totalPages ? "disabled" : "" } ` }
464+ aria-label = "Next page"
465+ title = "Next page"
462466 >
463- < ChevronRight size = { 16 } />
467+ < ChevronRight size = { 20 } />
464468 </ button >
465469 </ div >
466470 ) }
You can’t perform that action at this time.
0 commit comments