93f7061c53
- Fix TypeScript type error in deleteInvoice server action (returned
{message: string} instead of void, incompatible with form action type)
- Add export const dynamic = "force-dynamic" to dashboard pages that
make DB calls at build time (/dashboard, /dashboard/invoices,
/dashboard/invoices/create) to prevent failed static prerendering
- Fix import order in customers/page.tsx (export before import was invalid)
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
10 lines
168 B
TypeScript
10 lines
168 B
TypeScript
import type { Metadata } from "next";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Customers",
|
|
};
|
|
|
|
export default function Page() {
|
|
return <p>Customers Page</p>;
|
|
}
|