The notification message and title show up but the notification action button does not. I used the Automation UI to create this and have the latest version of home assistant 2021.12.9. Can anyone help me with a fix? The automation yaml code is shown below.
- id: '1642376820933'
alias: Garage Notification
description: ''
trigger:
- platform: state
entity_id: input_boolean.test
condition: []
action:
- service: notify.mobile_app_iphone13promax
data:
message: Garage Door open
title: Garage Door Status
data:
action: CLOSE_DOOR
title: Close Door
- wait_for_trigger:
- platform: event
event_type: mobile_app_notification_action
event_data:
action: CLOSE_DOOR
timeout: 00:01:00
continue_on_timeout: false
- service: notify.mobile_app_iphone13promax
data:
message: Door was closed
title: Door notification
mode: single
```