diff --git a/packages/cookie-banner/src/components/category-list.ts b/packages/cookie-banner/src/components/category-list.ts index dcb948e7c..93977f662 100644 --- a/packages/cookie-banner/src/components/category-list.ts +++ b/packages/cookie-banner/src/components/category-list.ts @@ -55,6 +55,8 @@ export class ProboCategoryList extends ProboElement { if (!this.template) return; for (const cat of categories) { + if (cat.cookies.length === 0) continue; + const wrapper = document.createElement("probo-category"); wrapper.setAttribute("name", cat.name); wrapper.setAttribute("kind", cat.kind);