diff --git a/src/components/cards/CallCard.tsx b/src/components/cards/CallCard.tsx index bc3c326..948f334 100644 --- a/src/components/cards/CallCard.tsx +++ b/src/components/cards/CallCard.tsx @@ -1,8 +1,6 @@ import { formatValue } from '../../lib/format'; export function CallCard({ row }: { row: Record }) { - const instanceId = row.instance_id || '—'; - // Status const stateName = String(row.status || row.current_state_name || 'Pending'); const isProductive = stateName.toLowerCase().includes('productive') || stateName.toLowerCase().includes('completed') || stateName.toLowerCase().includes('success');