Skip to content

Commit 33cf711

Browse files
committed
fix
1 parent 07eb755 commit 33cf711

File tree

1 file changed

+0
-12
lines changed
  • frontend/app/(dashboard)/invoices/[id]

1 file changed

+0
-12
lines changed

frontend/app/(dashboard)/invoices/[id]/page.tsx

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
"use client";
22

33
import { ArrowLeftIcon, ExclamationTriangleIcon } from "@heroicons/react/20/solid";
4-
import { InformationCircleIcon } from "@heroicons/react/24/outline";
54
import { Ban, CircleAlert, MoreHorizontal, Printer, SquarePen, Trash2 } from "lucide-react";
65
import Link from "next/link";
76
import { useParams, useRouter } from "next/navigation";
@@ -274,17 +273,6 @@ export default function InvoicePage() {
274273
</Alert>
275274
) : null}
276275

277-
{invoice.equityAmountInCents > 0 ? (
278-
<Alert className="mx-4 print:hidden">
279-
<InformationCircleIcon />
280-
<AlertDescription>
281-
When this invoice is paid, you'll receive an additional{" "}
282-
{formatMoneyFromCents(invoice.equityAmountInCents)} in equity. This amount is separate from the total
283-
shown below.
284-
</AlertDescription>
285-
</Alert>
286-
) : null}
287-
288276
<section
289277
className={cn(
290278
"invoice-print",

0 commit comments

Comments
 (0)