I have an array of objects that I want to provide a form on to update values.
In other words, the form in the repeat item will be used to update the record in the database.
I'm using Supabase.
Each record has an ID.
When the items load, I want the input fields to show the current value (if any).
But the user should be able to update the value for the given repeat record.
I tried to Bind to variable piece but that would bind each repeated item to the same variable which won't work because then if I'm updating the second item it could inherit the binding from the first item...