From 5feaddcd6f323dfade528b522e16ab36d82346ac Mon Sep 17 00:00:00 2001 From: Hussain Nagaria Date: Sat, 18 Oct 2025 17:07:54 +0530 Subject: [PATCH] chore: cleanup sources list --- .../Settings/LeadSyncing/LeadSyncSources.vue | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/frontend/src/components/Settings/LeadSyncing/LeadSyncSources.vue b/frontend/src/components/Settings/LeadSyncing/LeadSyncSources.vue index 80c10f25..761c27ea 100644 --- a/frontend/src/components/Settings/LeadSyncing/LeadSyncSources.vue +++ b/frontend/src/components/Settings/LeadSyncing/LeadSyncSources.vue @@ -4,7 +4,7 @@

- {{ __('Lead Sources') }} + {{ __('Lead sources') }}

{{ @@ -45,7 +45,7 @@

- {{ __('No email sources found') }} + {{ __('No lead sources found') }}
@@ -165,7 +165,6 @@ const emit = defineEmits(["updateStep"]); const sources = inject("sources"); const search = ref(""); -// const currentDoctype = ref('All') const confirmDelete = ref(false); const sourcesList = computed(() => { @@ -177,11 +176,6 @@ const sourcesList = computed(() => { source.subject.toLowerCase().includes(search.value.toLowerCase()), ); } - // if (currentDoctype.value !== 'All') { - // list = list.filter( - // (template) => source.reference_doctype === currentDoctype.value, - // ) - // } return list; });