Skip to content

Commit f14425b

Browse files
romankrruRoman Krasikov
andauthored
Fix chapter num in pagination component (#1135)
Co-authored-by: Roman Krasikov <[email protected]>
1 parent 7a05b71 commit f14425b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dashboard/starter-example/app/ui/invoices/pagination.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ import Link from 'next/link';
66
import { generatePagination } from '@/app/lib/utils';
77

88
export default function Pagination({ totalPages }: { totalPages: number }) {
9-
// NOTE: Uncomment this code in Chapter 11
9+
// NOTE: Uncomment this code in Chapter 10
1010

1111
// const allPages = generatePagination(currentPage, totalPages);
1212

1313
return (
1414
<>
15-
{/* NOTE: Uncomment this code in Chapter 11 */}
15+
{/* NOTE: Uncomment this code in Chapter 10 */}
1616

1717
{/* <div className="inline-flex">
1818
<PaginationArrow

0 commit comments

Comments
 (0)