diff --git a/src/components/cases/collections-tab.tsx b/src/components/cases/collections-tab.tsx index 1e60b82..07d5a4f 100644 --- a/src/components/cases/collections-tab.tsx +++ b/src/components/cases/collections-tab.tsx @@ -414,12 +414,14 @@ export function CaseCollectionsTab({ export function CollectionDetail({ collection, annualRate, + client, currentBalance: _currentBalance, onBack, onChange, }: { collection: any; annualRate: number | null; + client?: any; currentBalance: number; onBack: () => void; onChange: () => void;