I have the following code:
{{
qry_lpn.data.map((qry_lpn) => {
return {
label: qry_lpn.strPlate,
value: qry_lpn.strPlate
}
})
}}
I am getting the error
path:value must be unique. Duplicate values found
The query only returns distinct items. So there are no duplicates. I am at a loss at what to do next.