fix: lint formatting — attribute ordering, line breaks, whitespace

This commit is contained in:
Ramesh Mane
2026-04-10 09:37:40 +00:00
parent e43184c1b5
commit 2bead6b697
5 changed files with 27 additions and 15 deletions

View File

@@ -94,9 +94,7 @@ const integrationListItems = computed(() => {
for (const cat of integrationCategories) {
if (!isCategoryAllowed(cat)) continue
const categoryIntegrations = allIntegrations.filter(
(i) => i.type === cat.value && isIntegrationAllowed(i, cat),
)
const categoryIntegrations = allIntegrations.filter((i) => i.type === cat.value && isIntegrationAllowed(i, cat))
if (!categoryIntegrations.length) continue