Meta Bind - How to reset a list property to an empty array

I have this very simple button that’s supposed to reset a list property in my current note.

```meta-bind-button
label: Reset
icon: check
hidden: false
class: ""
tooltip: ""
id: "update"
style: primary
actions:
  - type: updateMetadata
    bindTarget: list-property
    evaluate: false
    value: []

It works but the problem is that this will reset the value of “list-property” to an empty string instead of an empty array. What am I doing wrong?

Thank you!