From 85d8a26d51e551c3232e9999c2d9dfc5bf3d3589 Mon Sep 17 00:00:00 2001 From: Kevin Ahrendt Date: Tue, 2 Dec 2025 14:27:20 -0500 Subject: [PATCH] remove icon --- esphome/components/wifi_info/text_sensor.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/esphome/components/wifi_info/text_sensor.py b/esphome/components/wifi_info/text_sensor.py index 0af4ebaf62..16eff4caba 100644 --- a/esphome/components/wifi_info/text_sensor.py +++ b/esphome/components/wifi_info/text_sensor.py @@ -10,7 +10,6 @@ from esphome.const import ( CONF_SCAN_RESULTS, CONF_SSID, ENTITY_CATEGORY_DIAGNOSTIC, - ICON_WIFI, ) DEPENDENCIES = ["wifi"] @@ -66,7 +65,6 @@ CONFIG_SCHEMA = cv.Schema( cv.Optional(CONF_POWER_SAVE_MODE): cv.All( text_sensor.text_sensor_schema( PowerSaveModeWiFiInfo, - icon=ICON_WIFI, entity_category=ENTITY_CATEGORY_DIAGNOSTIC, ).extend(cv.polling_component_schema("60s")), cv.only_on(["esp32"]),