Skip to content

Commit 1c643a3

Browse files
Apply suggested fix to src/components/module/singleVideo/listVideos/Pagination.tsx from Copilot Autofix
Co-authored-by: Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com>
1 parent 1a6a4de commit 1c643a3

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

src/components/module/singleVideo/listVideos/Pagination.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,7 @@ const Pagination = ({ itemsPerPage = 5 }: PaginationProps) => {
6060
onClick={() => handlePageChange(index + 1)}
6161
aria-label={`Page ${index + 1}`}
6262
aria-current={currentPage === index + 1 ? "page" : undefined}
63-
>
64-
{index + 1}
65-
</button>
63+
/>
6664
</div>
6765
))}
6866
<button

0 commit comments

Comments
 (0)