Are Light groups screwy or is it just me?

# Configure a default setup of Home Assistant (frontend, api, etc)
default_config:
homeassistant:
  latitude: XX.XXXX
  longitude: -XX.XXXX
  elevation: 686
  unit_system: imperial
  time_zone: America/Chicago
  
#  packages: !include_dir_named packages
# Text to speech
tts:
  - platform: google_translate
mqtt:
  discovery: true
  discovery_prefix: homeassistant

group: !include groups.yaml
automation: !include automations.yaml
script: !include scripts.yaml
scene: !include scenes.yaml
light: !include lights.yaml
climate: !include climate.yaml
    
# Example configuration.yaml entry
zwave:
  usb_path: /dev/ttyUSB0
  network_key: " XXXXX "    

logger:
  default: info
  logs:
    homeassistant.components.smartthings: debug

All that is in groups.yaml are my grouping of media devices and grouping of smoke detectors. That’s all.
A half or so automations (i do most of the automation in node-red). None of the automations in automations.yaml have anything to do with switches.
Nothing in the scripts.yaml file
A dozen scenes controlling lights. I removed any reference to the switches I was trying to convert to lights from the scenes.
Lots of light groups but all work fine except those with the two (now two) switch to light conversions that don’t work.
Climate.yaml just handles a generic thermostat for bedroom temperature
That’s it. I just started doing this as a conversion from smartthings to HA and so I’m running dual zigbee and zwave networks as I move devices over. The antennas for each setup (ST and HA) are about 30 feet apart and I am having zero issues except for this darn switch to light conversion thing.
Let me know if there is anything else you need to know.

Like I said I tried a second switch to light conversion. This time it was a peanut outlet.

  - platform: switch
    name: Yoga Room Lamp
    entity_id: switch.yoga_studio_outlet

And here is what my entities look like after a restart.

Yeah I was just making sure there was not an issue with the light switch integration (there isn’t). It’s something to do with your configuration that is preventing new lights being made from switches.