Actionable notification not giving actions

Same issue as this thread.
I get a notification on my iphone “Good Morning! Choose”, with no action buttons.

I capitalized per the thread’s resolution, but still no joy.

Can someone take a look?
config:

ios:
  push:
    categories:
      - name: Wake Choices
        identifier: 'wake choices'
        actions:
          - identifier: 'HEAT_MASTER'
            title: 'Heat Master'
            authenticationRequired: no
            destructive: no
          - identifier: 'HEAT_MASTER_WATER'
            title: 'Heat Master Run Water'
            authenticationRequired: no
            destructive: no
          - identifier: 'HEAT_KITCHEN'
            title: 'Heat Kitchen'
            authenticationRequired: no
            destructive: no
#          - identifier: 'NULL_SELECTION'
#            title: 'OK'
#            authenticationRequired: no
#            destructive: no

Automations:

- alias: morning_alarm_push
  trigger:
    - platform: event
      event_type: ios.action_fired
      event_data:
        actionName: MORNING ALARM
  action:
    service: notify.mobile_app_ewh_iphone
    data:
      title: "Good Morning!"
      message: "Choose"
      data:
        push:
          category: 'wake choices'

- alias: run_water
  trigger:
    platform: event
    event_type: ios.notification_action_fired
    event_data:
      actionName: HEAT_MASTER_WATER
  action:
  - service: automation.trigger
    entity_id: automation.pump_1_manual

Still no luck. I edited the above with some possible changes, but no action buttons on the notification on my iphone.

One issue from the other thread (and several others I read): I have not run to ground the ‘refresh’ on my iPhone. I do not see any refresh option in ios:settings, or the HA app:notifications, or anywhere else. But I see others were able to find it, so it must exist. I can follow these paths:
iPhone-Settings-notifications
iPhone-Settings-HomeAssistant-notifications
iPhone-HA_app-Notifications

In none of these do I find a ‘refresh’ option.
Did I miss it?

My latest edits removed the known default sections in the push configuration.
And removed the null selection, so there are only three actions in the ios configuration.

I figured out the refresh or update push notifications. On my phone it is the red “RESET” selection under the ‘PUSH ID’ section of this window:
iPhone - HA app - App Configuration - Notifications

This changed the list of actions to reflect my most recent configuration attempt.

But still no action buttons!!

It turns out I have to press and hold the notification on my phone to see the actions. this was at the very end of one of the threads. It works, but finicky.