Actionable notifications with Options

Hey

im trying to get the “choose” value in my Setting but it doesent work. My “normal” Actionable notification works fine but with 2 or more Options the trouble starts :confused:

  id: 0c87d44d4323441cab11b3e4f6d7d60e
- id: '1627309011002'
  alias: Dyson Luftreinigung
  description: ''
  trigger:
  - platform: numeric_state
    entity_id: sensor.dysonair10_manu
    above: '10'
    attribute: unit_of_measurement
  condition:
  - condition: time
    before: '23:00'
  action:
  - service: notify.mobile_app_iphone
    data:
      message: Pollen erhöht!
      title: Warnung!
      data:
        actions:
        - action: "{{ DYSON_ON }}"
          title: "Dyson An"
        - action: "{{ TEST }}"
          title: "TEST"
  - wait_for_trigger:
    - platform: event
      event_type: mobile_app_notification_action
      event_data:
        action: "{{ DYSON_ON }}"
    - platform: event
      event_type: mobile_app_notification_action
      event_data:
        action: "{{ TEST }}"
    continue_on_timeout: false
  - choose:
    - conditions: "{{ wait.trigger.event.data.action == DYSON_ON }}"
      sequence:
      - service: notify.mobile_app_iphone
        data:
          message: Dyson ON
    - conditions: "{{ wait.trigger.event.data.action == TEST }}"
      sequence:
      - service: notify.mobile_app_iphone
        data:
          message: TEST erfolg!
    default: []
  mode: single