diff --git a/client/components/tracker/PaymentProgress.jsx b/client/components/tracker/PaymentProgress.jsx
index 3620078..07f9e7a 100644
--- a/client/components/tracker/PaymentProgress.jsx
+++ b/client/components/tracker/PaymentProgress.jsx
@@ -1,7 +1,7 @@
import { cn, fmt } from '@/lib/utils';
import { paymentSummary } from '@/lib/trackerUtils';
-export function PaymentProgress({ row, threshold, onOpen, onMarkFullAmount, compact = false }) {
+export function PaymentProgress({ row, threshold, onOpen, onMarkFullAmount, compact = false, className }) {
const summary = paymentSummary(row, threshold);
const barTone = summary.remaining === 0
? 'bg-emerald-500'
@@ -19,7 +19,7 @@ export function PaymentProgress({ row, threshold, onOpen, onMarkFullAmount, comp
const showQuickFix = onMarkFullAmount && summary.partial && summary.paid > 0;
return (
-
+