Adaptive Lighting

Hello,
Today I started to use the Adaptive Lighting addon and I like it. However I run into one issue that I cannot figure out. I turn off lights based on the lack of motion. When turning them off I always use the transition phase option to have the light slowly dim out completely over the course of 30 seconds. This way I can intervene by moving/waving my arms when I’m still in the room but the sensor not picking me up. The lights will turn back to normal in that case. However since using AL, the transition from my lights.off service call does not work. When I have it enabled, the lights do not turn off at all. What AL setting would I need to tweak for my use case? I tried turning on take_over but no luck.

Here is my automation

alias: DR - Dining Light automation
description: Turns on/off the lights based on movement and lux levels
trigger:
  - platform: state
    entity_id:
      - binary_sensor.presence_sensor_fp2_ff6a_presence_sensor_3
    to: "on"
    for:
      hours: 0
      minutes: 0
      seconds: 2
    id: Dining_detected
  - platform: state
    entity_id:
      - binary_sensor.presence_sensor_fp2_ff6a_presence_sensor_3
    to: "off"
    for:
      hours: 0
      minutes: 0
      seconds: 10
    id: Dining_clear
condition: []
action:
  - choose:
      - conditions:
          - condition: trigger
            id: Dining_detected
          - type: is_illuminance
            condition: device
            device_id: e297aec40128a5553304fbc31571f57b
            entity_id: sensor.presence_sensor_fp2_ff6a_light_sensor_light_level
            domain: sensor
            below: 40
        sequence:
          - service: light.turn_on
            data:
              transition: 2
            target:
              device_id: 507646ed7310a4da19e20b48d4fc6a1c
      - conditions:
          - condition: trigger
            id: Dining_clear
        sequence:
          - service: light.turn_off
            data:
              transition: 60
            target:
              entity_id: light.dining_lamp
mode: single

I can’t see where I can see my AL settings as YAML.