From 83699ae61920308398c130b28a857f26a73d6ad3 Mon Sep 17 00:00:00 2001 From: Shariq Ansari Date: Thu, 20 Jun 2024 15:51:49 +0530 Subject: [PATCH] fix: hide label for twilio/whatsapp settings --- frontend/src/components/Settings/SettingsPage.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/src/components/Settings/SettingsPage.vue b/frontend/src/components/Settings/SettingsPage.vue index 8cbf42fa..d8949bdc 100644 --- a/frontend/src/components/Settings/SettingsPage.vue +++ b/frontend/src/components/Settings/SettingsPage.vue @@ -72,6 +72,7 @@ const sections = computed(() => { if (fieldsData[0].type !== 'Section Break') { _sections.push({ label: 'General', + hideLabel: true, columns: 1, fields: [], }) @@ -80,6 +81,7 @@ const sections = computed(() => { if (field.type === 'Section Break') { _sections.push({ label: field.value, + hideLabel: true, columns: 1, fields: [], })