diff --git a/src/app/[id]/edit/page.tsx b/src/app/[id]/edit/page.tsx index 7408c14..8e9f4b3 100644 --- a/src/app/[id]/edit/page.tsx +++ b/src/app/[id]/edit/page.tsx @@ -3,6 +3,7 @@ import { getBillByIdFromDB } from "@/server/get-bill-by-id-from-db"; import { requireAuthenticatedUser } from "@/lib/auth-guards"; import { BASE_PATH } from "@/utils/basePath"; import { Button } from "@/components/ui/button"; +import { ReprocessButton } from "@/components/ReprocessButton/reprocess-button.component"; interface Params { params: Promise<{ id: string }>; @@ -25,6 +26,9 @@ export default async function EditBillPage({ params }: Params) { return (