Automation with timer not working

i have an automation but the following part is not working

- id: 'TimerEingangstuer'
  alias: "Eingangstür Licht und Timer Steuerung"
  description: >
    Steuerung des Lichts und Timers basierend auf Türkontakt, Bewegungsmelder und Sonnenstand.
  trigger:
    - platform: event
      event_type: timer.finished
      event_data:
        entity_id:
          - timer.eingang_lang
          - timer.eingang_kurz
  condition: []
  action:
    - choose:
        - conditions:
            - condition: template
              value_template: >
                {{ trigger.event.data.entity_id in ['timer.eingang_lang', 'timer.eingang_kurz'] }}
          sequence:
            - service: switch.turn_off
              entity_id: switch.licht_vordach_eingang

i don t get the problem.
i hope someone can help me

Hi Dave,

So… Not working.
Not much to go on there.
I’d say you have not started either of the timers, final answer.
I don’t need to phone a friend.

Remove the entity IDs from the trigger.

- id: 'TimerEingangstuer'
  alias: "Eingangstür Licht und Timer Steuerung"
  description: >
    Steuerung des Lichts und Timers basierend auf Türkontakt, Bewegungsmelder und Sonnenstand.
  trigger:
    - platform: event
      event_type: timer.finished
condition:
  - condition: template
    value_template: >
      {{ trigger.event.data.entity_id in ['timer.eingang_lang', 'timer.eingang_kurz'] }}
action:
  - action: switch.turn_off
    entity_id: switch.licht_vordach_eingang