Wrong feedback from GA, turning on 2 lights, while there is only one

hi,

i am testing lights and switches in HA, i have everything working like it should, only the feedback voice from GA is totally wrong
see my screenshot, i have 2 lights , in 2 different rooms (kitchen and diner)
if i say: kitchen on => feedback , ok turning kitchen on
if i say: living on => feedback , ok turning on 2 lights
if i say screen 4 on => ok, turning 3 things on

whats worng? i dont understand

confiig:
in assistant : 

  entity_config:
    light.keuken:
      name: Keuken
      expose: true
      room: Keuken
    light.living:
      name: Living
      expose: true
      room: Living

in lights:

- platform: template
  lights:
    keuken:
      friendly_name: "Keuken"
      turn_on:
        service: switch.turn_on
        entity_id:
          - switch.light0
      turn_off:
        service: switch.turn_off
        entity_id:
          - switch.light0
          
    living:
      friendly_name: "Living"
      turn_on:
        service: switch.turn_on
        entity_id:
          - switch.light3
      turn_off:
        service: switch.turn_off
        entity_id:
          - switch.light3   

in switch:
  light3:
    friendly_name: Zithoek
    command_on: 'curl -k "......"'
    command_off: 'curl -k "......"'

  light0:
    friendly_name: Keuken
    command_on: 'curl -k "....."'
    command_off: 'curl -k "....."'

for covers : 
    cover.keukendeur:
      name: Screen 4
      expose: true
      room: Screens
      aliases:
        - Screen 4
        - Raam 4

    cover4:
      friendly_name: Keukendeur
      command_open: 'curl -k "..."'
      command_close: 'curl -k "...."'
      command_stop: 'curl -k "...."'

hmm, think i have found the culprit, has something todo with aliasses and stuff, i have tested a lot, and i think google thinks that there are still lights linked with an alias or something, that dont excist anymore

is there some kind of reset or delete al aliassess

as an example

if i say: speelkamer ON
ok, turning on Bureay

if i say: Bureau ON
ok, turning on 2 lights

this is just 1 light/entity though, in this case “speelkamer” is a newly created alias

light.bureau:
  name: Bureau
  expose: true
  room: Bureau
  aliases:
    - Bureau
    - Speelkamer

ok, after the second test, if i now say , speelkamer ON
ok, turning on 2 lights

its totally fucked , i have no idea where to look

ok, further testing

if 1 have 1 light in a 1 room, with 2 aliasses

ok, turning on 2 lights
if i remove the ROOM
so 1 l light, not in a room, also with 2 aliassess
then it works

so its a combination of aliassess and rooms thats not working
so multiple aliassess in 1 room is a NOGO