Pouchdb insert form repeat data

Hi,
Could I get some help on this one please? Been trying to save a text input on a form repeat to my pouchdb database. I have done this on MySQL server connects works fine.

I have a form repeat with a text input displaying a list of short sentences pulled from a pouchdb view from another table.
I have tried everything but can’t get the list or even just the first one to save to the database.
adding to the name field doesn’t seem to do anything.
Have tried setting the type as an array and as a text.
I feel this should be pretty easy so forgive me if I am missing something simple.

Can you show some screenshots of what you’ve got?
Maybe some code?
Will be helpful to reproduce it

<div class="modal-footer">
        <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
        <button id="btn1" class="btn" dmx-on:click="run({'pouchdb.insert':{name:'insert',connection:'db_couch',sql:{type:'insert',values:[{table:'take5_data_1',column:'question',type:'json',value:`form1.formRepeat1.qtake5.value`}],table:'take5_data_1',returning:'_id',query:'insert into `take5_data_1` (`question`) values (?) returning `_id`,params:[]}}})">Button</button>
      </div>

ignore the text in the click event thats another issue.

I dont seem to be able to save the data from inside the form repeat. Can i not get this data in a page flow?

If i have the same text input outside the form repeat it works.