Wemo switches auto discovered, but breaks hassio any time I try to edit anything with them

I’m trying to change the icon of a wemo switch that was auto discovered. The switch is a known entity called switch.snowman

doesn’t mater if I’m trying to customize it or add it to a group, after I restart home assistant, home assistant continues to say connection lost reconnecting.

If I remove any mention of any wemo switch that was auto discovered, home assistant goes back to normal.

group:
  default_view:
    view: yes
      name: bruhswitch
      icon: mdi:snowman
      entities:
        - switch.snowman
        - switch.fireplace

Spacing is a bit off, try:

group:
  default_view:
    view: yes
    name: bruhswitch
    icon: mdi:snowman
    entities:
      - switch.snowman
      - switch.fireplace
1 Like

Do you have a customize.yaml file? You can add something similar in there:

switch.snowman:
  icon: mdi:snowman
1 Like

THANK YOU! FML it works.