Job.braket.aquila().run_async() issue w/ local detune

Can you help me to fix my program which uses local detune.
It runs fine on emulator, but this command
job.braket.aquila().run_async(10)
is blocked by AWS with error:
ValueError: Device does not support local detuning, but the program has a non-uniform spatial modulation for detuning.

Despite I see in AWS : QuEra Aquila - Local detuning

Enabled

This is a reproducer

Thanks
Jan

The fix is:
hw_batch = job.braket.aquila().run_async(10,use_experimental=True)
Thanks Milan