diff --git a/apps/web/src/portal/sections/BillingPayments.tsx b/apps/web/src/portal/sections/BillingPayments.tsx index 5869e1f..489f87d 100644 --- a/apps/web/src/portal/sections/BillingPayments.tsx +++ b/apps/web/src/portal/sections/BillingPayments.tsx @@ -216,7 +216,7 @@ export function BillingPayments({ readOnly }: Props) { ); } -function PaymentModal({ outstanding, totalOutstanding, onClose }: { outstanding: Invoice[]; totalOutstanding: number; onClose: () => void }) { +function PaymentModal({ outstanding, totalOutstanding: _totalOutstanding, onClose }: { outstanding: Invoice[]; totalOutstanding: number; onClose: () => void }) { const [selectedInvoices, setSelectedInvoices] = useState>(new Set(outstanding.map(i => i.id))); const [isProcessing, setIsProcessing] = useState(false); const [isComplete, setIsComplete] = useState(false);