Files
vercel_dashboard_example/app/dashboard/customers/page.tsx
T
claude 93f7061c53 fix: resolve build failures
- 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>
2026-05-12 14:52:47 +00:00

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>;
}