From 5f97a2fd7bf2058697c1714987b43b798906d398 Mon Sep 17 00:00:00 2001 From: Sivin Varghese <64252451+iamsivin@users.noreply.github.com> Date: Fri, 24 Oct 2025 23:01:30 +0530 Subject: [PATCH] chore: Remove channel icons from the create inbox page (#12727) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # Pull Request Template ## Description This PR removes the frame containing all channel icons from the “Create Inbox” page. ## Type of change - [x] Bug fix (non-breaking change which fixes an issue) ## How Has This Been Tested? ### Screenshots **Before** image **After** image ## Checklist: - [x] My code follows the style guidelines of this project - [x] I have performed a self-review of my code - [ ] I have commented on my code, particularly in hard-to-understand areas - [ ] I have made corresponding changes to the documentation - [x] My changes generate no new warnings - [ ] I have added tests that prove my fix is effective or that my feature works - [x] New and existing unit tests pass locally with my changes - [ ] Any dependent changes have been merged and published in downstream modules --- .../settings/inbox/InboxChannels.vue | 29 ------------------- 1 file changed, 29 deletions(-) diff --git a/app/javascript/dashboard/routes/dashboard/settings/inbox/InboxChannels.vue b/app/javascript/dashboard/routes/dashboard/settings/inbox/InboxChannels.vue index 68dba3cda..f69a50064 100644 --- a/app/javascript/dashboard/routes/dashboard/settings/inbox/InboxChannels.vue +++ b/app/javascript/dashboard/routes/dashboard/settings/inbox/InboxChannels.vue @@ -6,7 +6,6 @@ import { useMapGetter } from 'dashboard/composables/store'; import { useBranding } from 'shared/composables/useBranding'; import PageHeader from '../SettingsSubPageHeader.vue'; -import Icon from 'next/icon/Icon.vue'; const { t } = useI18n(); const route = useRoute(); @@ -14,22 +13,6 @@ const { replaceInstallationName } = useBranding(); const globalConfig = useMapGetter('globalConfig/get'); -const ALL_CHANNEL_ICONS = [ - 'i-woot-line', - 'i-woot-facebook', - 'i-woot-whatsapp', - 'i-woot-instagram', - 'i-woot-messenger', - 'i-woot-website', - 'i-woot-mail', - 'i-woot-sms', - 'i-woot-telegram', - 'i-woot-api', - 'i-woot-twilio', - 'i-woot-gmail', - 'i-woot-outlook', -]; - const createFlowSteps = computed(() => { const steps = ['CHANNEL', 'INBOX', 'AGENT', 'FINISH']; @@ -78,18 +61,6 @@ const items = computed(() => {