You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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 dataThe text was updated successfully, but these errors were encountered: