Skip to content

Commit 929b6bb

Browse files
authored
Correct pagination.tsx chapter reference (#784)
Chapter to uncomment was 7 instead of 11
1 parent 91e23c4 commit 929b6bb

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 7
9+
// NOTE: Uncomment this code in Chapter 11
1010

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

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

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

0 commit comments

Comments
 (0)