diff --git a/src/components/ha-target-picker.ts b/src/components/ha-target-picker.ts index 4edf45230d..85fb984a59 100644 --- a/src/components/ha-target-picker.ts +++ b/src/components/ha-target-picker.ts @@ -502,6 +502,9 @@ export class HaTargetPicker extends SubscribeMixin(LitElement) { } private _entityRegMeetsFilter(entity: EntityRegistryEntry): boolean { + if (entity.entity_category) { + return false; + } if ( this.includeDomains && !this.includeDomains.includes(computeDomain(entity.entity_id))