Counter unknown service

First time i try to use a counter.
In developer tools - services, i can increment this counter

In an automation, this exact service is not executed.
Error message:
image

This is the automation in yaml:

alias: TEST 1 AAN
description: ""
trigger:
  - platform: state
    entity_id:
      - input_boolean.test
    from: "off"
    to: "on"
condition: []
action:
  - service: cv_counter.increment
  - service: counter.increment
    data: {}
    target:
      entity_id: counter.cv_counter
mode: single

Any idea what i’m doing wrong here?

action:
  - service: counter.increment
    data: {}
    target:
      entity_id: counter.cv_counter
mode: single

Yes that solves it. I did not look at the complet yaml until i copied it to include here. In the visual editor this is not visible. Also not visible when editing the action in yaml.

Thanks !!