Zemismart/Local Tuya Blind issue

Ive been trying to automate my blind motors but im running into an issue with two of them when the automation fires only one will close.
Ive needed to delay the closure of the second one until after the first has closed.
I can close them together manually and all my other blinds can close simultaneously,
This is the automation I need to use.

alias: Blinds Sunrise House
description: ""
trigger:
  - platform: time
    at: "06:30:00"
condition: []
action:
  - device_id: 900c393c24135bf11b5f76d7b5b5c703
    domain: cover
    entity_id: cover.theatre_blind
    type: set_position
    position: 100
  - service: cover.open_cover
    data: {}
    target:
      entity_id: cover.local_blind_side1
  - delay:
      hours: 0
      minutes: 0
      seconds: 40
      milliseconds: 0
  - service: cover.open_cover
    data: {}
    target:
      entity_id: cover.local_blind_side2
  - delay:
      hours: 0
      minutes: 0
      seconds: 40
      milliseconds: 0
  - device_id: 185dc100fc71a44e0f395e713cdb3b65
    domain: cover
    entity_id: cover.local_back_blind
    type: set_position
    position: 100
mode: single