Hi,
When you create a component, and when you add input what happens is, when its a record or a table, it generates a default bogus "record or table"
Those sample fields are what they get called.
What you need to do is go to the component. Click on it (like click the actual component line in the Component section) do not click anything under it.
Now once you have it selected, in the Top Left Corner, the dropdown the usually shows you the Properties of the Screen, instead it will show the Properties of the Component. If its something that has an Input or more it will look like this
PropertyNamne
PropertyName1
PropertyName2
etc.
You have to select the Property. When you do, in the Right side, where expressions go, you will see that Sample inserted Collection record or table. I think you said Table so it will be a Table
You have to instead, replace those with the proper schema that matches the Table and or Collection you are passing in.
So if you had
{
InputNumericProperty: 0, //where I put a default value of 0 as its a number
InputStringProperty: Blank() or ""
and so on
}
You HAVE to match the format and property type. You cannot put a numeric, but the Table has a string being passed in.
THis will make your error go away