From cb275ce1d947803e66006428d4feba14473b23a4 Mon Sep 17 00:00:00 2001 From: Muhsin <12408980+muhsin-k@users.noreply.github.com> Date: Mon, 6 Apr 2026 11:29:48 +0400 Subject: [PATCH] chore: remove voiceCall gating for tabs and settings --- .../dashboard/settings/inbox/Settings.vue | 26 ++++++++----------- 1 file changed, 11 insertions(+), 15 deletions(-) diff --git a/app/javascript/dashboard/routes/dashboard/settings/inbox/Settings.vue b/app/javascript/dashboard/routes/dashboard/settings/inbox/Settings.vue index bd05e053e..35bd70133 100644 --- a/app/javascript/dashboard/routes/dashboard/settings/inbox/Settings.vue +++ b/app/javascript/dashboard/routes/dashboard/settings/inbox/Settings.vue @@ -144,19 +144,17 @@ export default { }, ]; - if (!this.voiceCallEnabled) { - visibleToAllChannelTabs = [ - ...visibleToAllChannelTabs, - { - key: 'business-hours', - name: this.$t('INBOX_MGMT.TABS.BUSINESS_HOURS'), - }, - { - key: 'csat', - name: this.$t('INBOX_MGMT.TABS.CSAT'), - }, - ]; - } + visibleToAllChannelTabs = [ + ...visibleToAllChannelTabs, + { + key: 'business-hours', + name: this.$t('INBOX_MGMT.TABS.BUSINESS_HOURS'), + }, + { + key: 'csat', + name: this.$t('INBOX_MGMT.TABS.CSAT'), + }, + ]; if (this.isAWebWidgetInbox) { visibleToAllChannelTabs = [ @@ -172,7 +170,6 @@ export default { this.isATwilioChannel || this.isALineChannel || this.isAPIInbox || - this.voiceCallEnabled || (this.isAnEmailChannel && !this.inbox.provider) || this.shouldShowWhatsAppConfiguration || this.isAWebWidgetInbox @@ -762,7 +759,6 @@ export default {