Covers MQTT issue

Hello,
I want to command two covers with MQTT
This is my config.yamlcover:

cover:
  - platform: mqtt
    name: "Rolluiken_Hoek"
    command_topic: "rolluikenbeneden"
    state_topic: "rolluikenbenedenconfirm"
    qos: 0
    payload_open: "1"
    payload_stop: "2"
    payload_close: "3"
    state_open: "Open"
    state_closed: "Dicht"    
  - platform: mqtt
    name: "Rolluiken_Voor"
    command_topic: "rolluikenbeneden"
    state_topic: "rolluikenbenedenconfirm"
    qos: 0
    payload_open: "4"
    payload_stop: "5"
    payload_close: "6" 
    state_open: "Open"
    state_closed: "Dicht"

The first part (Rolluiken Hoek) works fine but the second part (Rolluiken Voor) don’t.

I have them show up in UI and if i click on the up or down command of “Rolluiken Hoek” the payload sends out.
If i click on the up or down command of “Rolluiken Voor” nothing happens.

What did i do wrong?

If these are two separate covers then each one should have its own unique command_topic and state_topic.

Rolluiken Voor uses a different command_topic from Rolluiken Hoek (good) but it uses the same state_topic (not good).

Solved,
Thanks for the tip.