diff --git a/dashboard/starter-example/app/ui/dashboard/cards.tsx b/dashboard/starter-example/app/ui/dashboard/cards.tsx index 0ee0286a..526e6f97 100644 --- a/dashboard/starter-example/app/ui/dashboard/cards.tsx +++ b/dashboard/starter-example/app/ui/dashboard/cards.tsx @@ -16,7 +16,7 @@ const iconMap = { export default async function CardWrapper() { return ( <> - {/* NOTE: comment in this code when you get to this point in the course */} + {/* NOTE: Uncomment this code in Chapter 9 */} {/* diff --git a/dashboard/starter-example/app/ui/dashboard/latest-invoices.tsx b/dashboard/starter-example/app/ui/dashboard/latest-invoices.tsx index 183d5596..4b34f3a2 100644 --- a/dashboard/starter-example/app/ui/dashboard/latest-invoices.tsx +++ b/dashboard/starter-example/app/ui/dashboard/latest-invoices.tsx @@ -14,7 +14,7 @@ export default async function LatestInvoices({ Latest Invoices
- {/* NOTE: Comment out this code in Chapter 9 */} + {/* NOTE: Uncomment this code in Chapter 9 */} {/*
{latestInvoices.map((invoice, i) => { diff --git a/dashboard/starter-example/app/ui/dashboard/revenue-chart.tsx b/dashboard/starter-example/app/ui/dashboard/revenue-chart.tsx index 7443afc0..f19e698d 100644 --- a/dashboard/starter-example/app/ui/dashboard/revenue-chart.tsx +++ b/dashboard/starter-example/app/ui/dashboard/revenue-chart.tsx @@ -15,7 +15,7 @@ export default async function RevenueChart({ revenue: Revenue[]; }) { const chartHeight = 350; - // NOTE: Comment out this code in Chapter 7 + // NOTE: Uncomment this code in Chapter 7 // const { yAxisLabels, topLabel } = generateYAxis(revenue); @@ -28,7 +28,7 @@ export default async function RevenueChart({

Recent Revenue

- {/* NOTE: Comment out this code in Chapter 7 */} + {/* NOTE: Uncomment this code in Chapter 7 */} {/*
diff --git a/dashboard/starter-example/app/ui/invoices/pagination.tsx b/dashboard/starter-example/app/ui/invoices/pagination.tsx index 9d3650a8..a0975601 100644 --- a/dashboard/starter-example/app/ui/invoices/pagination.tsx +++ b/dashboard/starter-example/app/ui/invoices/pagination.tsx @@ -6,13 +6,13 @@ import Link from 'next/link'; import { generatePagination } from '@/app/lib/utils'; export default function Pagination({ totalPages }: { totalPages: number }) { - // NOTE: Comment out this code in Chapter 7 + // NOTE: Uncomment this code in Chapter 7 // const allPages = generatePagination(currentPage, totalPages); return ( <> - {/* NOTE: Comment out this code in Chapter 7 */} + {/* NOTE: Uncomment this code in Chapter 7 */} {/*