diff --git a/src/app/(protected)/active-call/page.tsx b/src/app/(protected)/active-call/page.tsx
index b15ff4b..16647e6 100644
--- a/src/app/(protected)/active-call/page.tsx
+++ b/src/app/(protected)/active-call/page.tsx
@@ -86,6 +86,7 @@ export default function ActiveCallPage() {
setIsSpeakerOn,
isInCall,
takeCall,
+ hangUpCall,
isAudioConnected,
} = useActiveCall();
@@ -425,9 +426,7 @@ export default function ActiveCallPage() {
-
- Auto-translating from Spanish
-
+ Auto-translating
@@ -465,36 +464,6 @@ export default function ActiveCallPage() {
{/* Insights List */}
- {/* WebSocket Connection Status */}
-
-
-
-
-
- {wsConnectionState.isConnected
- ? "Real-time Updates Active"
- : "Disconnected"}
-
-
- {wsConnectionState.sessionId && (
-
- {wsConnectionState.sessionId.slice(0, 8)}
-
- )}
-
-
-
- {aiInsights.map((insight, index) => (
-
- ))}
-
{/* Caller Info Card - Real Data from WebSocket */}
@@ -539,7 +508,9 @@ export default function ActiveCallPage() {
-
+ {aiInsights.map((insight, index) => (
+
+ ))}
{/* Connection Events Log (for debugging) */}
{connectionEvents.length > 0 && (
@@ -600,7 +571,10 @@ export default function ActiveCallPage() {
)}
-