Qubino Flush Relay intermittent shows on when off

I have a Qubino (GOAP) ZWave relay on my Foyer Lighting.

Functionality
I have a Manual switch that can turn this relay on to illuminate the Foyer light.
It is also activated by an Automation (code below)

- id: '1573809638998'
  alias: Foyer Lighting at night
  description: Turn on Foyer Light after door switch is opened or MS6 detects motion
  trigger:
  - entity_id: sensor.front_door_3_access_control
    from: '23'
    platform: state
    to: '22'
  - entity_id: binary_sensor.aeon_labs_zw100_multisensor_6_sensor
    from: 'off'
    platform: state
    to: 'on'
  condition:
  - condition: or
    conditions:
    - after: sunset
      condition: sun
    - before: sunrise
      condition: sun
  - condition: and
    conditions:
    - condition: state
      entity_id: switch.qubino_foyer_relay_switch
      state: 'off'
  action:
  - entity_id: switch.qubino_foyer_relay_switch
    service: switch.turn_on
  - data: {}
    entity_id: switch.aeon_cpa_switch_switch_3
    service: switch.turn_on
  - delay: 00:05:00
  - data: {}
    entity_id: switch.aeon_cpa_switch_switch_3
    service: switch.turn_off
  - delay: 00:01:00
  - entity_id: switch.qubino_foyer_relay_switch
    service: switch.turn_off
  mode: single

Intermittently the status of the Qubino Relay is shown as “ON” when it’s actually “OFF”. I have to go into HA and move the blue switch to the off position. The Light is not on.
This usually happens after an automation has been triggered and conditions met. The light turns on and after the delay turn off but the switch shows as on still?

I have tried making sure that it’s not a range thing. As you can see from Image there are 4 neighbors and most are within a few meters or so.

Anyone see any issues with my automation or is this a bug in ZWave or Qubino???