diff --git a/src/components/entity/ha-entity-combo-box.ts b/src/components/entity/ha-entity-combo-box.ts index 92ad0b72a7..8deb6abc29 100644 --- a/src/components/entity/ha-entity-combo-box.ts +++ b/src/components/entity/ha-entity-combo-box.ts @@ -499,20 +499,7 @@ export class HaEntityComboBox extends LitElement { const results = fuse.multiTermsSearch(filterString); if (results) { - if (results.length === 0) { - target.filteredItems = [ - { - ...FAKE_ENTITY, - label: "", - primary: this.hass!.localize( - "ui.components.entity.entity-picker.no_match" - ), - icon_path: mdiMagnify, - }, - ] as EntityComboBoxItem[]; - } else { - target.filteredItems = results.map((result) => result.item); - } + target.filteredItems = results.map((result) => result.item); } else { target.filteredItems = this._items; }