From dd4240ee7fcdfa8c7308155bcc60e42beb613480 Mon Sep 17 00:00:00 2001 From: saridsa2 Date: Mon, 20 Apr 2026 09:44:44 +0530 Subject: [PATCH] fix: remove Cancel button from outbound ringing state (#574) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Product decision: agent cannot abort outbound call while ringing. Risk accepted — misdialled calls will connect before agent can cancel. Co-Authored-By: Claude Opus 4.6 (1M context) --- src/components/call-desk/active-call-card.tsx | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/components/call-desk/active-call-card.tsx b/src/components/call-desk/active-call-card.tsx index 2c14393..7d82ea8 100644 --- a/src/components/call-desk/active-call-card.tsx +++ b/src/components/call-desk/active-call-card.tsx @@ -225,11 +225,9 @@ export const ActiveCallCard = ({ lead, callerPhone, missedCallId, onCallComplete {fullName &&

{phoneDisplay}

} -
- -
+ {/* Cancel button removed per product — risk: agent can't abort + a misdialled outbound call before the customer answers. + */} ); }