diff --git a/dashboard/15-final/app/dashboard/invoices/create/page.tsx b/dashboard/15-final/app/dashboard/invoices/create/page.tsx
index 754e94a..563cb0c 100644
--- a/dashboard/15-final/app/dashboard/invoices/create/page.tsx
+++ b/dashboard/15-final/app/dashboard/invoices/create/page.tsx
@@ -1,4 +1,4 @@
-import AddInvoiceForm from "@/app/ui/invoice-form";
+import AddInvoiceForm from "@/app/ui/invoices/add-invoice-form";
export default function Page() {
return
| + # + | ++ Customer + | ++ Email + | ++ Amount + | ++ Date + | ++ Status + | + ++ Edit + | + {/*+ View + | */} +
|---|---|---|---|---|---|---|---|
| + {invoice.id} + | +
+
+
+ {getCustomerById(invoice.customerId)?.name} + |
+ + {getCustomerById(invoice.customerId)?.email} + | ++ {(invoice.amount / 100).toLocaleString("en-US", { + style: "currency", + currency: "USD", + })} + | ++ {invoice.date} + | ++ {renderInvoiceStatus(invoice.status)} + | +
+
+ |
+ {/* + + View, {invoice.id} + + | */} +
| - ID - | -- Customer Name - | -- Amount - | -- Status - | -- Date - | -- View - | -
|---|---|---|---|---|---|
| - {invoice.id} - | -{getNameById(invoice.customerId)} | -{invoice.amount.toLocaleString("en-US", {style: "currency", currency: "USD"})} | -{invoice.status} | -{invoice.date} | -- - View, {invoice.id} - - | -