This commit is contained in:
2026-05-11 20:40:21 +03:00
parent d2d22799b6
commit d9ffcb4b92
15 changed files with 1652 additions and 1388 deletions
@@ -2,6 +2,11 @@ import Form from '@/app/ui/invoices/edit-form';
import Breadcrumbs from '@/app/ui/invoices/breadcrumbs';
import { fetchInvoiceById, fetchCustomers } from '@/app/lib/data';
import { notFound } from 'next/navigation';
import { Metadata } from 'next';
export const metadata: Metadata = {
title: 'Edit invoices',
};
export default async function Page(props: { params: Promise<{ id: string }> }) {
const params = await props.params;