From f35eb87af670dccec02f3d657a0470e9e3dab075 Mon Sep 17 00:00:00 2001 From: suryacp23 Date: Tue, 14 Jul 2026 16:56:12 +0530 Subject: [PATCH] fix:build error --- src/components/cards/CallCard.tsx | 2 -- 1 file changed, 2 deletions(-) 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');