fix: unused notes param in disposition handler

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-19 18:07:24 +05:30
parent edd2aa689d
commit a88cbecfbf

View File

@@ -43,7 +43,7 @@ export const ActiveCallCard = ({ lead, callerPhone }: ActiveCallCardProps) => {
const phone = lead?.contactPhone?.[0]; const phone = lead?.contactPhone?.[0];
const phoneDisplay = phone ? formatPhone(phone) : callerPhone || 'Unknown'; const phoneDisplay = phone ? formatPhone(phone) : callerPhone || 'Unknown';
const handleDisposition = async (disposition: CallDisposition, notes: string) => { const handleDisposition = async (disposition: CallDisposition, _notes: string) => {
setSavedDisposition(disposition); setSavedDisposition(disposition);
// Create call record in platform // Create call record in platform