fix:build error

This commit is contained in:
suryacp23 2026-07-14 16:56:12 +05:30
parent ef707baeec
commit f35eb87af6

View File

@ -1,8 +1,6 @@
import { formatValue } from '../../lib/format';
export function CallCard({ row }: { row: Record<string, any> }) {
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');