fix: calls dashboard load race (#15094)

This commit is contained in:
Sivin Varghese
2026-07-21 15:00:08 +05:30
committed by GitHub
parent ae49af354d
commit 920a98ccf4
2 changed files with 24 additions and 13 deletions
@@ -25,8 +25,11 @@ const route = useRoute();
const kind = computed(() => getCallKind(props.call));
const contactName = computed(
() => props.call.contact.name || props.call.contact.phoneNumber
const contactName = computed(() =>
(props.call.contact.name || props.call.contact.phoneNumber || '').replace(
/^\+/,
''
)
);
const agentActionLabel = computed(() => {