+ {customFieldProperties.map((property) => {
+ const supported = isTypeSupported(property.type);
+ return (
+
+
+
+ {property.name}
+
+
+ {supported ? property.type : t('common.unsupported')}
+
+
+ }
+ onChange={() => handleCustomFieldToggle(property.id, supported)}
+ />
+
+ );
+ })}
+