<div className="test col-sm-6 col-12">
{round !== undefined && section !== undefined && (
<FieldFormDropDown
label="floor_bag_time_2"
name={`rounds[${round}].sections[${section}].floor_bag_time_2`}
options={[
{ value: 'light', label: 'Light' },
{ value: 'medium', label: 'Medium' },
{ value: 'high', label: 'High' }
]}
round={round}
section={section}
fieldName="floor_bag_time_2"
nextName={
(round === 0 || round === "0" || round === 2 || round === "2") &&
`rounds[${roundNumber}].sections[${section}].floor_1`
}
/>
)}
</div>