chore(voice): align FE files to incoming-pipeline base (UI changes consolidated to PR #14346)

This commit is contained in:
Tanmay Deep Sharma
2026-05-02 14:40:06 +07:00
parent 0e0e0868d7
commit a766ebf642
5 changed files with 23 additions and 137 deletions
-14
View File
@@ -55,19 +55,5 @@ export const useCallsStore = defineStore('calls', {
dismissCall(callSid) {
this.calls = this.calls.filter(call => call.callSid !== callSid);
},
removeCallsForConversation(conversationId) {
const callsToRemove = this.calls.filter(
call => call.conversationId === conversationId
);
if (callsToRemove.some(call => call.isActive)) {
TwilioVoiceClient.endClientCall();
}
this.calls = this.calls.filter(
call => call.conversationId !== conversationId
);
},
},
});