Spacer in forms

I’m attempting to use the “spacer” form field. Are the spacers supposed to show in order along with the other fields? They’re all showing at the top of the form whenever I use them.

I have something like this:

fields:
        -
            type: spacer
            title: Basics
            text: 'Lets start with your information.'
        -
            name: name
        -
            name: organization
        -
            type: spacer
            title: 'Contact Information'
            text: 'How can we get in touch with you?'
        -
            name: email 
        -
            name: phone

The ordering works if you add a “name” to the spacer:

        -
            type: spacer
            title: 'Contact Information'
            text: 'How can we get in touch with you?'
            name: spacer

The name has to be unique for each spacer.

Generally fields are described like this:

fields:
        spacer1:
            type: spacer
            title: Basics
            text: 'Lets start with your information.'
        name:
            type: text
        organization:
            type: text
        spacer2:
            type: spacer
            title: 'Contact Information'
            text: 'How can we get in touch with you?'
        email:
            type: email
        phone:
            type: text 

This way each field has a unique name as that key is used for name: by default.