Hi this software looks really useful!
Is there an ability to hide fields that are not being used and are not required?
For example, when defining fields within the react component, we have:
-> const fields: Field<string>[] = [firstName, middleName, surName, emailAddress]
But when importing a csv, we have fewer columns to import:
-> csv contains: [["First Name", "Surname", "Email Address"], [...], ... ]
I would like to hide the field middleName on the final page, because it does not appear in the csv file and is not required base on Field information. Currently, "Middle Name" will appear and contain no data
Hi this software looks really useful!
Is there an ability to hide fields that are not being used and are not required?
For example, when defining fields within the react component, we have:
->
const fields: Field<string>[] = [firstName, middleName, surName, emailAddress]But when importing a csv, we have fewer columns to import:
-> csv contains:
[["First Name", "Surname", "Email Address"], [...], ... ]I would like to hide the field
middleNameon the final page, because it does not appear in the csv file and is not required base on Field information. Currently, "Middle Name" will appear and contain no data